Inserting Chart Axis Title Dynamically in Spreadsheet Document
Leave feedback
NoteThe code uses some of the objects defined in The Business Layer.
NoteThis feature is supported by version 18.1 or greater.
Following steps, you can create a column chart in MS Excel 2013:
- Create a new Workbook
- Click the “Insert” tab, and then click “Insert Column Chart” icon in the Charts group to view the drop-down list
- Select the “100% Stacked Column” and press “OK” to insert the chart and Worksheet template to your Worksheet
- Edit the Worksheet with your data to update the chart
- Save your Document
As a report developer, you are required to share orders quantity of the customers dynamically with the following key requirements:
- A report must show the quantity of sales/orders
- Sales/orders quantity must be represented by Quarters
- It must associate order quantity with the corresponding customer
- A report must be generated in the Spreadsheet Document
<<[title]>><<foreach [in orders
.Where(c => c.OrderDate.Year == 2015)
.GroupBy(c => c.Customer)
.OrderBy(g => g.Key.CustomerName)]>><<x [Key.CustomerName]>>
Legend Entries
="1st Quarter<<y [Where(c => c.OrderDate.Month >= 1 && c.OrderDate.Month <= 3).Sum(c => c.ProductQuantity)]>>"
="2nd Quarter<<y [Where(c => c.OrderDate.Month >= 4 && c.OrderDate.Month <= 6).Sum(c => c.ProductQuantity)]>>"
="3rd Quarter<<y [Where(c => c.OrderDate.Month >= 7 && c.OrderDate.Month <= 9).Sum(c => c.ProductQuantity)]>>"
="4th Quarter<<y [Where(c => c.OrderDate.Month >= 10 && c.OrderDate.Month <= 12).Sum(c => c.ProductQuantity)]>>"
Please download the sample Chart with Filtering, Grouping, and Ordering with Dynamic Title document we created in this article:
- Chart Template.xlsx (Template for CustomObject and JSON examples)
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.