public bool AllowShowIndicator {get; set;}
'Declaration
Public Property AllowShowIndicator As Boolean
'使用法
Dim instance As SpreadChart
Dim value As Boolean
instance.AllowShowIndicator = value
value = instance.AllowShowIndicator
プロパティ値
Spreadがこのチャートのインジケーターを表示できる場合は
True
、それ以外の場合は
False
。
次のサンプルコードは、AllowShowIndicatorプロパティを設定します。
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());
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())