@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
34 lines (33 loc) • 890 B
TypeScript
import { IHighchartsSeriesExtend } from "../../../../interfaces/HighchartsExtend";
export declare function resetPointPaddingForTooSmallHeatmapCells(series: IHighchartsSeriesExtend): void;
export declare function getHeatmapConfiguration(): {
chart: {
type: string;
marginTop: number;
marginRight: number;
spacingRight: number;
};
plotOptions: {
heatmap: {
dataLabels: {
enabled: boolean;
allowOverlap: boolean;
crop: boolean;
overflow: string;
};
point: {
events: {
mouseOver(): void;
};
};
events: {
afterGeneratePoints(): void;
};
};
};
yAxis: {
labels: {
formatter(): any;
};
}[];
};