[]
        
(Showing Draft Content)

Wijmo_Chart_Analytics.Waterfall

Waterfall クラス

FlexChart のウォータフォール系列を表します。

通常、{@link WaterfallSeries} は、開始位置からの増加または減少の様子を一連の 変化量によって表示するために使用されます。

階層

  • any
    • Waterfall

コンストラクタ

constructor

  • Waterfall クラスの新しいインスタンスを初期化します。

    引数

    • オプション options: any

      オブジェクトの初期化データを含むJavaScriptオブジェクト。

    戻り値 Waterfall

プロパティ

connectorLines

connectorLines: boolean

接続線を表示するかどうかを決定する値を取得または設定します。

intermediateTotalLabels

intermediateTotalLabels: any

小計バーのラベルを含むプロパティの名前を取得または設定します。 この値は配列または文字列である必要があります。

このプロパティは、showIntermediateTotal プロパティおよびintermediateTotalPositions プロパティと組み合わせて使用されます。

intermediateTotalPositions

intermediateTotalPositions: number[]

小計バーの位置のインデックスを含むプロパティの値を取得または設定します。

このプロパティは、showIntermediateTotal プロパティおよびintermediateTotalLabels プロパティと組み合わせて使用されます。

relativeData

relativeData: boolean

指定されたデータが相対値(差異)であるかどうかを決定する値を取得または設定します。

showIntermediateTotal

showIntermediateTotal: boolean

小計バーを表示するかどうかを決定する値を取得または設定します。

このプロパティは、showIntermediateTotal プロパティおよびintermediateTotalPositions プロパティと組み合わせて使用されます。

showTotal

showTotal: boolean

チャートの末尾に合計バーを表示するかどうかを決定する値を取得または設定します。

start

start: number

開始バーの値を決定する値を取得または設定します。開始値がnullの場合、開始バーは表示されません。

startLabel

startLabel: string

開始バーのラベルを取得または設定します。

styles

styles: any

ウォータフォールのスタイルを取得または設定します。

以下のスタイルがサポートされています。

  1. start: 開始バーのスタイルを指定します。
  2. total: 合計バーのスタイルを指定します。
  3. intermediateTotal: 小計バーのスタイルを指定します。
  4. falling: 減少バーのスタイルを指定します。
  5. rising: 増加バーのスタイルを指定します。
  6. connectorLines: 接続線のスタイルを指定します。
waterfall.styles = {
  start: { fill: 'blue', stroke: 'blue' },
  total: { fill: 'yellow', stroke: 'yellow' },
  falling: { fill: 'red', stroke: 'red' },
  rising: { fill: 'green', stroke: 'green' },
  connectorLines: { stroke: 'blue', 'stroke-dasharray': '10, 10' }
}

totalLabel

totalLabel: string

合計バーのラベルを取得または設定します。