realchart
Version:
Wooritech charting library
28 lines (24 loc) • 1.07 kB
TypeScript
import * as RealChart from 'realchart';
import { ConnectableSeries, HeatmapSeriesOptions, IPlottingItem, DataPoint } from 'realchart';
/**
* Heatmap 시리즈 모델.<br/>
* {@link https://realchart.co.kr/docs/api/options/SeriesOptions#type type}은 {@link https://realchart.co.kr/config/config/series/heatmap heatmap}이고,
* {@link options 설정} 모델은 {@link https://realchart.co.kr/docs/api/options/HeatmapSeriesOptions HeatmapSeriesOptions}이다.
*
* @modules heatmap
*/
declare class HeatmapSeries extends ConnectableSeries<HeatmapSeriesOptions> {
static readonly type = "heatmap";
static defaults: HeatmapSeriesOptions;
_heatMin: number;
_heatMax: number;
getColor(value: number): string;
canMixWith(other: IPlottingItem): boolean;
canCategorized(): boolean;
hasZ(): boolean;
defYAxisType(): string;
protected _createPoint(source: any): DataPoint;
protected _doPrepareRender(): void;
}
declare function registerSeries(chart: typeof RealChart): void;
export { HeatmapSeries, registerSeries as default };