content
ツールチップの内容を取得または設定します。
この内容は文字列として指定するほかに、aHitTestInfoオブジェクトをパラメーターとして受け取る関数として指定することもできます。
ツールチップの内容が文字列の場合、以下のパラメーターを含めることができます。
- propertyName: Any property of the data object represented by the point.
- seriesName: Name of the series that contains the data point (FlexChart only).
- pointIndex: Index of the data point.
- value: Value of the data point (y-value for FlexChart, item value for FlexPie).
- x: x-value of the data point (FlexChart only).
- y: y-value of the data point (FlexChart only).
- name: Name of the data point (x-value for FlexChart or legend entry for FlexPie).
パラメーターは波かっこで囲む必要があります。例:
// 'country'と'sales'はデータオブジェクトのプロパティです chart.tooltip.content = '{country}, sales:{sales}';
次の例は、関数を使用してツールチップの内容を設定する方法を示します。
// ツールチップの内容を設定します。 chart.tooltip.content = function (ht) { return ht.name + ":" + ht.value.toFixed(); }
- 型
- any
Tooltip クラスを拡張してチャートのツールチップを提供します。