import { CartesianChart } from "./utils/CartesianChart";

export interface IBarChart extends CartesianChart {
    type: "bar",
    series?: {
        color?: string,
        borderColor?: string,
        radius?: number,
        borderWidth?: number,
        xAxis?: 'top' | 'bottom'
    }[],
}