Spread for ASP.NET 8.0 Product Documentation
ChartDataSetting Constructor(EmptyValueStyle,Boolean)
Example 


The empty value style.
if set to true [show hidden data].
Initializes a new instance of the ChartDataSetting class.
Syntax
'Declaration
 
Public Function New( _
   ByVal emptyValueStyle As EmptyValueStyle, _
   ByVal showHiddenData As Boolean _
)
'Usage
 
Dim emptyValueStyle As EmptyValueStyle
Dim showHiddenData As Boolean
 
Dim instance As New ChartDataSetting(emptyValueStyle, showHiddenData)
public ChartDataSetting( 
   EmptyValueStyle emptyValueStyle,
   bool showHiddenData
)

Parameters

emptyValueStyle
The empty value style.
showHiddenData
if set to true [show hidden data].
Example
This example sets the EmptyValueStyle 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
Requirements

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

See Also

Reference

ChartDataSetting Class
ChartDataSetting Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.