constructor(options?: any): ParametricFunctionSeries
ParametricFunctionSeries クラスの新しいインスタンスを初期化します。
JavaScript object containing initialization data for the object.
系列の代替スタイルを取得または設定します。
横棒グラフ、縦棒グラフ、散布図の負の値に使用されたり、 ローソク足チャート、ラインブレイク、エクイボリュームなどの 株価チャートタイプの上昇値に使用されます。
このプロパティのデフォルト値は null です。これにより、系列はデフォルトのスタイルを使用します。
データ内のnull値を補間するかどうかを決定する値を取得または設定します。
trueの場合は、隣接するポイントに基づいて、欠けているデータの値が補間されます。falseの場合は、null値のあるポイントで、線や領域に切れ目ができます。
このプロパティのデフォルト値はfalseです。
系列の外観をカスタマイズするための項目書式設定関数を取得または設定します。
このプロパティはチャートの itemFormatter itemFormatter をオーバーライドします。
系列の名前を取得または設定します。
系列の名前を取得または設定します。系列名はチャートの凡例に表示されます。 名前のない系列は凡例に表示されません。
系列の各データポイントに使用するマーカーの形状を取得または設定します。 Scatter、LineSymbols、SplineSymbolsの各チャートタイプに適用されます。
このプロパティのデフォルト値はMarker.Dotです。
このSeries をレンダリングするために使用されるシンボルのサイズ(ピクセル単位)を取得または設定します。 Scatter、LineSymbols、およびSplineSymbolsチャートタイプに適用されます。
このプロパティのデフォルト値は10ピクセルです。
系列のシンボルスタイルを取得または設定します。
Scatter、LineSymbols、およびSplineSymbolsチャートタイプに適用されます。
系列を表示するかどうか、表示する場合はどこに表示するかを示す列挙値を取得または設定します。
このプロパティのデフォルト値はSeriesVisibility.Visibleです。
approximate(value: number): void
指定された値から近似xおよびyを取得します。
The value to calculate.
dataToPoint(pt: Point): Point
Point を系列データ座標からコントロール座標に変換します。
drawLegendItem(engine: IRenderEngine, rect: Rect, index: number): void
指定した位置に凡例項目を描画します。
The rendering engine to use.
The position of the legend item.
Index of legend item(for series with multiple legend items).
getDataRect(currentRect?: Rect, calculatedRect?: Rect): Rect
データ座標の境界四角形を返します。
getDataRect()がnullを返すと、データ値に基づいて自動的に境界が計算されます。
The current rectangle of chart. This parameter is optional.
The calculated rectangle of chart. This parameter is optional.
getPlotElement(pointIndex: number): any
指定したポイントインデックスに対応するプロット要素を取得します。
The index of the data point.
hitTest(pt: any, y?: number): HitTestInfo
指定したポイントに関する情報を含むHitTestInfo オブジェクトを取得します。
The point to investigate, in window coordinates.
The Y coordinate of the point (if the first parameter is a number).
initialize(options: any): void
指定したオブジェクトからプロパティをコピーして系列を初期化します。
JavaScript object containing initialization data for the series.
measureLegendItem(engine: IRenderEngine, index: number): Size
凡例項目の高さと幅を測定します。
The rendering engine to use.
Index of legend item(for series with multiple legend items).
onRendered(engine: IRenderEngine): void
rendered イベントを発生させます。
The IRenderEngine object used to render the series.
onRendering(engine: IRenderEngine, index: number, count: number): boolean
rendering イベントを発生させます。
The IRenderEngine object used to render the series.
The index of the series to render.
Total number of the series to render.
FlexChart のパラメータ関数シリーズを表します。
ParametricFunctionSeries は、式x=f(t)およびy=f(t)によって定義される関数をプロットします。
x値とy値は、xFunc およびyFunc プロパティに割り当てられた関数によって計算されます。