BarChartElement is derived from ObjectData and implement the IChart interface, providing information about a bar chart element.
Members
Name |
Description |
barChartDataPoint |
a list with all the points of the polygon that represent the bar chart |
colorInfoList |
list with color information about chart bar element |
legend |
reference to its legend |
barChartDataPoint - list with all the points of the polygon that represent the bar chart element.
private List<ChartDataPoint> areaChartDataPoint = new List<ChartDataPoint>(); |
colorInfoList - list with color information about the bar chart element
private List<ChartColorInfo> colorInfoList = new List<ChartColorInfo>(); |
legend - reference to its legend or null if bar chart element doesn't have one
private LegendChartItemData legend = null; |
Get-Set Methods
Name |
Type |
Description |
BarChartDataPoint |
List<ChartDataPoint> |
get BarChartDataPoint list |
ColorInfoList |
List<ChartColorInfo> |
get colorInfoList |
Legend |
LegendChartItemData |
get or set legend |
Method
AddLegendForChartElements - sets for this bar chart element a reference to a chart legend
public void AddLegendForChartElements(LegendChartData legendChartData)
|