Spread Windows Forms 10.0 Product Documentation
DataSetting Property (SpreadChart)
Example 


Gets or sets the data setting of SpreadChart.
Syntax
'Declaration
 
Public Property DataSetting As ChartDataSetting
'Usage
 
Dim instance As SpreadChart
Dim value As ChartDataSetting
 
instance.DataSetting = value
 
value = instance.DataSetting
public ChartDataSetting DataSetting {get; set;}

Property Value

The data setting.
Remarks

The ShowHiddenData option indicates whether the hidden data in the sheet is used to generate series data. When this value is false, the hidden data is ignored. The EmptyValueStyle property indicates how to use the empty value and what the value will be converted to.

Example
This example sets the DataSetting property.
SpreadChart chart = this.fpSpread1_Sheet1.Charts[0];
ChartDataSetting dataSetting = new ChartDataSetting(EmptyValueStyle.Zero, true);
chart.DataSetting = dataSetting;
//chart.DataSetting.EmptyValueStyle = EmptyValueStyle.Zero;
//chart.DataSetting.ShowHiddenData = true;
Dim chart As New FarPoint.Win.Spread.Chart.SpreadChart(GetType(FarPoint.Win.Chart.BarSeries))
Dim dataSetting As New FarPoint.Win.Spread.Chart.ChartDataSetting(FarPoint.Win.Spread.Chart.EmptyValueStyle.Zero, True)
chart.DataSetting = dataSetting
FpSpread1.Sheets(0).AddChart(chart, 0, 0)
'chart.DataSetting.EmptyValueStyle = FarPoint.Win.Spread.Chart.EmptyValueStyle.Zero
'chart.DataSetting.ShowHiddenData = True
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SpreadChart Class
SpreadChart Members

 

 


Copyright © GrapeCity, inc. All rights reserved.