Gets or sets a value indicating whether Spread can show the chart indicator.
Syntax
Visual Basic (Declaration) | |
---|
Public Property AllowShowIndicator As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SpreadChart
Dim value As Boolean
instance.AllowShowIndicator = value
value = instance.AllowShowIndicator |
C# | |
---|
public bool AllowShowIndicator {get; set;} |
Property Value
true
if Spread can show indicator of this chart; otherwise,
false
.
Remarks
Example
This example sets the AllowShowIndicator property.
C# | Copy Code |
---|
FarPoint.Win.Spread.Chart.SpreadChart chart;
FarPoint.Win.Spread.Model.CellRange range = new FarPoint.Win.Spread.Model.CellRange(0, 0, 7, 4);
chart = fpSpread1.Sheets[0].AddChart(range, typeof(FarPoint.Win.Chart.BarSeries), 400, 300, 300, 80, FarPoint.Win.Chart.ChartViewType.View3D, false);
chart.AllowShowIndicator = true;
listBox1.Items.Add(chart.CanChangeChartType.ToString()); |
Visual Basic | Copy Code |
---|
Dim chart As FarPoint.Win.Spread.Chart.SpreadChart
Dim range As New FarPoint.Win.Spread.Model.CellRange(0, 0, 7, 4)
chart = FpSpread1.Sheets(0).AddChart(range, GetType(FarPoint.Win.Chart.BarSeries), 400, 300, 300, 80, FarPoint.Win.Chart.ChartViewType.View3D, False)
chart.AllowShowIndicator = True
ListBox1.Items.Add(chart.CanChangeChartType.ToString()) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also