This section describes the type of analytic chart cards that can be used in overview pages. They can be line, bubble, donut, column, stacked column, vertical bullet, combination, or scatter.
Example
<Annotation Term="UI.Chart" Qualifier="Qualifier_ID_1"> <Record Type="UI.ChartDefinitionType"> <PropertyValue Property="Title" String="View1" /> <PropertyValue Property="ChartType" EnumMember="UI.ChartType/Bubble"/> <PropertyValue Property="MeasureAttributes"> <Collection> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="SalesShare" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis1" /> </Record> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="TotalSales" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis2" /> </Record> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="Sales" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis3" /> </Record> </Collection> </PropertyValue> <PropertyValue Property="DimensionAttributes"> <Collection> <Record Type="UI.ChartDimensionAttributeType"> <PropertyValue Property="Dimension" PropertyPath="Product" /> <PropertyValue Property="Role" EnumMember="UI.ChartDimensionRoleType/Series" /> </Record> </Collection> </PropertyValue> </Record> </Annotation>
|
|
Line Chart Card |
Bubble Chart Card |
A donut chart displays data as different colored sections of a donut. The value of the measure determines the size of each section. Donut charts help the viewer to quickly determine the key area that needs attention.
Donut charts require exactly one measure. You can provide more than one dimension, in which case they are stacked so that the sections of the chart represent the combination of both dimensions. For example, if you define "Sales" as your measure, and provide two dimensions: "Year" and "Country", the chart will display the sales data of each combination of year and country as a separate colored section.
A column chart displays data, such as total product sales over a period of years. The number of columns is equal to the number of measures in the annotation file.
Column charts require at least one measure and one dimension. Irrespective of the role defined for the measure in the annotation file, every measure will be represented as a separate column. Similarly, irrespective of the role defined in the annotation file, every dimension will be added to the category axis (x-axis).
|
|
Donut Chart Card |
Column Chart Card |
A stacked column chart is similar to the column chart; however, all measures irrespective of role, get stacked on top of each other. There should be at least one dimension with the assigned role category and all dimensions with this role would be added to the category axis (x-axis). All dimensions with role series also get stacked. It's recommended to either stack based on dimensions or measures, but not mix both in a single chart card.
axis. All measures with role axis1 would be represented as solid colored columns, which represent actual values. All measures with role axis2 would be represented as a solid black line, which represents the target value.
|
|
Stacked Colulmn Chart Card |
Vertical Bullet Chart Card |
Vertical bullet charts accept at least one measure and one dimension. All dimensionsWith a combination chart card, you can display more than one measure; the first measure gets displayed in a column format and theVertical bullet charts accept at least one measure and one dimension. All dimensions subsequent measure is displayed as a line within the chart. It's recommended to have irrespective of their role will be assigned to the category subsequent measure is displayed as a line within the chart. It's recommended to have irrespective of their role will be assigned to the category only one time-based dimension for the category axis in such charts. only one time-based dimension for the category axis in such charts.
All measures, irrespective of their roles, get assigned to the feed UID value axis. There must be at least two measures for combination chart cards to work. All dimensions with role "Category" get assigned to the category axis. This is also the default role. There must be at least one role that can be assigned to the category axis. All dimensions with role "Series" get assigned to feed UID color and get displayed within the chart area with different colored column and line combination for each of its members.
Example
<Annotation Term="UI.Chart" Qualifier="Eval_by_Currency_Combination"> <Record Type="UI.ChartDefinitionType"> <PropertyValue Property="Title" String="Sales and Total Sales" /> <PropertyValue Property="ChartType" EnumMember="UI.ChartType/Combination"/> <PropertyValue Property="MeasureAttributes"> <Collection> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="sales" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis1" /> </Record> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="totalsales" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis1" /> </Record> </Collection> </PropertyValue> <PropertyValue Property="DimensionAttributes"> <Collection> <Record Type="UI.ChartDimensionAttributeType"> <PropertyValue Property="Dimension" PropertyPath="quarter_1" /> <PropertyValue Property="Role" EnumMember="UI.ChartDimensionRoleType/Category" /> </Record> </Collection> </PropertyValue> </Record> </Annotation>
With a scatter chart card, you can visualize the distribution of data points over two measures; it requires exactly two measures and at least one dimension. The first measure for which the role is set, is set to axis1, or if none exists, is set to axis2, or if none exists, the first measure for which the role is set, is set to to axis3, is assigned to the feed UID valueAxis. This makes up the x- axis. The other measure is plotted on the y-axis.
A scatter chart card supports a maximum of two dimensions. If the dimension is not marked with any role, then all members of the dimension are plotted as same colored equal sized bubbles in the chart. A maximum of one dimension can be marked with role "Series" and all members of such a dimension get a different color. A maximum of one dimension can be marked with role "Category" and all members of such a dimension get a different shape.
Example
<Annotation Term="UI.Chart" Qualifier="Eval_by_Currency_Scatter"> <Record Type="UI.ChartDefinitionType"> <PropertyValue Property="Title" String="Scatter Chart no role" /> <PropertyValue Property="ChartType" EnumMember="UI.ChartType/Scatter" /> <PropertyValue Property="MeasureAttributes"> <Collection> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="salesshare" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis1" /> </Record> <Record Type="UI.ChartMeasureAttributeType"> <PropertyValue Property="Measure" PropertyPath="totalsales" /> <PropertyValue Property="Role" EnumMember="UI.ChartMeasureRoleType/Axis2" /> </Record> </Collection> </PropertyValue> <PropertyValue Property="DimensionAttributes"> <Collection> <Record Type="UI.ChartDimensionAttributeType"> <PropertyValue Property="Dimension" PropertyPath="suppliercompany" /> </Record> </Collection> </PropertyValue> </Record> </Annotation>
![]() |
![]() |
Combination Chart Card |
Scatter Chart Card |