Individual Series Point Coloring in Spreadsheet Document

Individual Series Point Coloring in Spreadsheet Document

Please follow below steps to can create Pie Chart in MS Excel 2013.

  1. Add a new Workbook
  2. Click on the workbook where you want to insert the chart, click the “Insert” tab, and then click “Pie Chart Icon” in the charts group
  3. A drop-down with charts will appear, select the “Pie” and press “OK” to insert the chart
  4. Click on the chart you just inserted, then click the “Change Data” icon in Data group
  5. Now add legend entries. See Chart Data
  6. Save your Document

Reporting Requirement

As a report developer, you are required to share your customers’ orders details dynamically with the following key requirements:

  • The report must show information on a Pie Chart
  • It must indicate customer name with value (price of the orders purchased)
  • The report must be generated in the Spreadsheet Document

Adding Syntax to be evaluated by GroupDocs.Assembly Engine

Chart Title

Total Order Price<<foreach [in customers]>>
<<x [CustomerName]>>

Chart Data

Legend Entries

="Total Order Price<<y [Order.Sum(c => c.Price)]>><<pointColor[color]>>"

Download Pie Chart Template

Please download the sample Pie Chart document we created in this article:

Generating The Report

For a chart with dynamic data, you can set colors of individual chart series points dynamically based upon expressions. To use the feature, do the following steps:

  • Declare a chart with dynamic data in the usual way

  • For chart series with points to be colored dynamically, define corresponding color expressions in names of these series using pointColor tags having the following syntax:

    <<pointColor [color_expression]>>
    

A color expression must return a value of one of the following types:

  • A string containing the name of a known color, that is, the case-insensitive name of a member of the KnownColor enumeration such as “red”
  • An integer value defining RGB (red, green, blue) components of the color such as 0xFFFF00 (yellow)
  • A value of the Color type

Following code snippet generates the report:

© Aspose Pty Ltd 2001-2022. All Rights Reserved.