sryd-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
17 lines (16 loc) • 791 B
TypeScript
import { _ModuleSupport } from 'ag-charts-community';
import { OhlcNode } from './ohlcNode';
import { OhlcSeriesBase } from './ohlcSeriesBase';
import type { OhlcNodeDatum } from './ohlcSeriesBase';
import { OhlcSeriesProperties } from './ohlcSeriesProperties';
export declare class OhlcSeries extends OhlcSeriesBase<OhlcNode, OhlcSeriesProperties> {
static readonly className = "ohlc";
static readonly type: "ohlc";
properties: OhlcSeriesProperties;
protected nodeFactory(): OhlcNode;
protected updateDatumNodes({ datumSelection, isHighlight, }: {
datumSelection: _ModuleSupport.Selection<OhlcNode, OhlcNodeDatum>;
isHighlight: boolean;
}): void;
getLegendData(legendType: _ModuleSupport.ChartLegendType): _ModuleSupport.CategoryLegendDatum[];
}