Spread for ASP.NET 11 Product Documentation
DataSetting Property (SpreadChart)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread.Chart Namespace > SpreadChart Class : DataSetting Property
Gets or sets the data setting of the current 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;}
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 uses the DataSetting property.
FpSpread1.Sheets[0].AddChart(0, 0, typeof(FarPoint.Web.Chart.BarSeries), 300, 300, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, true);
FarPoint.Web.Spread.Chart.ChartDataSetting dataSetting = new FarPoint.Web.Spread.Chart.ChartDataSetting(FarPoint.Web.Spread.Chart.EmptyValueStyle.Zero, true);
FarPoint.Web.Spread.Chart.SpreadChart chart = FpSpread1.Sheets[0].Charts[0];        
chart.DataSetting = dataSetting;
//chart.DataSetting.EmptyValueStyle = FarPoint.Web.Spread.Chart.EmptyValueStyle.Zero;
//chart.DataSetting.ShowHiddenData = true;
FpSpread1.Sheets(0).AddChart(0, 0, GetType(FarPoint.Web.Chart.BarSeries), 300, 300, 0, 0, FarPoint.Web.Chart.ChartViewType.View2D, True)
Dim chart As FarPoint.Web.Spread.Chart.SpreadChart
Dim dataSetting As New FarPoint.Web.Spread.Chart.ChartDataSetting(FarPoint.Web.Spread.Chart.EmptyValueStyle.Zero, True)
chart = FpSpread1.Sheets(0).Charts(0)
chart.DataSetting = dataSetting
'chart.DataSetting.EmptyValueStyle = FarPoint.Web.Spread.Chart.EmptyValueStyle.Zero
'chart.DataSetting.ShowHiddenData = True
See Also

Reference

SpreadChart Class
SpreadChart Members