sryd-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
25 lines (24 loc) • 1.13 kB
TypeScript
import type { AgHeatmapSeriesItemStylerParams, AgHeatmapSeriesLabelFormatterParams, AgHeatmapSeriesOptions, AgHeatmapSeriesStyle, AgHeatmapSeriesTooltipRendererParams, Styler, TextAlign, VerticalAlign } from 'ag-charts-community';
import { _ModuleSupport } from 'ag-charts-community';
import { AutoSizedLabel } from '../util/autoSizedLabel';
declare const CartesianSeriesProperties: typeof _ModuleSupport.CartesianSeriesProperties;
export declare class HeatmapSeriesProperties extends CartesianSeriesProperties<AgHeatmapSeriesOptions> {
title?: string;
xKey: string;
yKey: string;
colorKey?: string;
xName?: string;
yName?: string;
colorName?: string;
colorRange: string[];
stroke: string;
strokeOpacity: number;
strokeWidth: number;
textAlign: TextAlign;
verticalAlign: VerticalAlign;
itemPadding: number;
itemStyler?: Styler<AgHeatmapSeriesItemStylerParams<unknown>, AgHeatmapSeriesStyle>;
readonly label: AutoSizedLabel<AgHeatmapSeriesLabelFormatterParams>;
readonly tooltip: _ModuleSupport.SeriesTooltip<AgHeatmapSeriesTooltipRendererParams<any>>;
}
export {};