Spread Silverlight Documentation
GetDataPoint Method
Example 


Index of the point.
Gets the data point.
Syntax
'Declaration
 
Public Function GetDataPoint( _
   ByVal pointIndex As System.Integer _
) As DataPoint
'Usage
 
Dim instance As SpreadDataSeries
Dim pointIndex As System.Integer
Dim value As DataPoint
 
value = instance.GetDataPoint(pointIndex)
public DataPoint GetDataPoint( 
   System.int pointIndex
)

Parameters

pointIndex
Index of the point.
Example
This example uses the GetDataPoint method.
GrapeCity.Windows.SpreadSheet.Data.SpreadChart chart = new GrapeCity.Windows.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.ColumnStacked, 0, 0, 200, 200);
// only for column, bar, or pie charts.
//bar or pie charts do not support the border property.
GrapeCity.Windows.SpreadSheet.Data.SpreadDataSeries ds = new GrapeCity.Windows.SpreadSheet.Data.SpreadDataSeries();
ds.Values.Add(4);
ds.Values.Add(7);
ds.Values.Add(6);
ds.Values.Add(10);
ds.Values.Add(4);

ds.GetDataPoint(2).Fill = new SolidColorBrush(Colors.Red);
ds.GetDataPoint(2).Stroke = new SolidColorBrush(Colors.Blue);
ds.GetDataPoint(2).StrokeDashType = GrapeCity.Windows.SpreadSheet.Data.StrokeDashType.Dash;
ds.GetDataPoint(2).StrokeThickness = 2;
chart.DataSeries.Add(ds); 
gcSpreadSheet1.ActiveSheet.Charts.Add(chart);
Dim chart As New GrapeCity.Windows.SpreadSheet.Data.SpreadChart("Chart", GrapeCity.Windows.SpreadSheet.Data.SpreadChartType.ColumnStacked, 0, 0, 200, 200)
' only for column, bar, or pie charts.
'bar or pie charts do not support the border property.
Dim ds As New GrapeCity.Windows.SpreadSheet.Data.SpreadDataSeries()
ds.Values.Add(4)
ds.Values.Add(7)
ds.Values.Add(6)
ds.Values.Add(10)
ds.Values.Add(4)

ds.GetDataPoint(2).Fill = New SolidColorBrush(Colors.Red)
ds.GetDataPoint(2).Stroke = New SolidColorBrush(Colors.Blue)
ds.GetDataPoint(2).StrokeDashType = GrapeCity.Windows.SpreadSheet.Data.StrokeDashType.Dash
ds.GetDataPoint(2).StrokeThickness = 2
chart.DataSeries.Add(ds)
GcSpreadSheet1.ActiveSheet.Charts.Add(chart)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

SpreadDataSeries Class
SpreadDataSeries Members

 

 


Copyright © GrapeCity, inc. All rights reserved.