LineChartElement

Top Previous Topic Next Topic  Print this topic

LineChartElement is derived from ObjectData and implements the IChart interface, providing information about a line chart element.

 

Members

 

Name

Description

lineChartDataPoint

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

colorInfoList

list with color information about line chart element

legend

reference to its legend

 

lineChartDataPoint - list with all the points of the polygon that represent the line chart element

 

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

 

colorInfoList - list with all the color information about the line chart element

 

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

 

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

 

private LegendChartItemData legend = null;

 

Get-Set Methods

 

Name

Type

Description

LineChartDataPoint

List<ChartDataPoint>

get LineChartDataPoint list

ColorInfoList

List<ChartColorInfo>

get colorInfoList

Legend

LegendChartItemData

get or set legend

 

 

 

Method

 

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

 

 

public void AddLegendForChartElements(LegendChartData legendChartData)