AreaChartElement

Top Previous Topic Next Topic  Print this topic

AreaChartElement is derived from ObjectData and implements the IChart interface, providing information about an area chart element.

 

Members

 

Name

Description

areaChartDataPoint

a list with all the points of the polygon that represent the area

colorInfoList

list with color information about chart area element

legend

reference to its legend

 

areaChartDataPoint - list with all the points of the polygon that represent the area chart element

 

private List<ChartDataPoint> areaChartDataPoint = new List<ChartDataPoint>();

 

colorInfoList - list with color information about the area chart element

 

private List<ChartColorInfo> colorInfoList = new List<ChartColorInfo>();

 

legend - reference to its legend or null if area chart element doesn't have one

 

private LegendChartItemData legend = null;

 

Get-Set Methods

 

Name

Type

Description

AreaChartDataPoint

List<ChartDataPoint>

get areaChartDataPoint list

ColorInfoList

List<ChartColorInfo>

get colorInfoList

Legend

LegendChartItemData

get or set legend

 

Method

 

AddLegendForChartElements - sets for this area chart element a reference to a chart legend

 

 

public void AddLegendForChartElements(LegendChartData legendChartData)