MESCIUS SPREAD for Windows Forms 15.0J
AllowShowIndicator プロパティ
使用例 

Spread がこのチャートのインジケータを表示できるかどうかを示す値を取得または設定します。
構文
'宣言
 
Public Property AllowShowIndicator As Boolean
public bool AllowShowIndicator {get; set;}

プロパティ値

Spreadがこのチャートのインジケーターを表示できる場合はtrue、それ以外の場合はfalse。
解説
チャートコントロールのインジケーターをクリックすると、SPREADのセルデータに関するアウトライン(系列で使用されているデータなど)が表示されます。
使用例
次のサンプルコードは、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())
参照

SpreadChart クラス
SpreadChart メンバ

 

 


© MESCIUS inc. All rights reserved.