import { SimplifiedCartesianChart } from './utils/SimplifiedCartesianChart';

export interface IHistogramChart extends SimplifiedCartesianChart {
    type: "histogram",
    series?: {
        color?: string,
        borderColor?: string,
        radius?: number,
        borderWidth?: number,
    }[],
    separation?: {
        type: 'piece-width' | 'number-of-pieces',
        value: number,
    },
}