import { CartesianChart } from "./utils/CartesianChart";

export interface IColumnChart extends CartesianChart {
    type: "column",
    series?: {
        color?: string,
        borderColor?: string,
        radius?: number,
        borderWidth?: number,
        yAxis?: 'left' | 'right'
    }[],
}