import { BasicChart } from './utils/BasicChart';
import { IDashStyle, IPointStyle, IRadialAxis } from './utils/utils';

export interface IRadarChart extends BasicChart {
    type: "radar",
    series?: {
        drawNullValues?: boolean,

        color?: string,
        borderColor: string,

        line?: {
            width?: number,
            dash?: IDashStyle,
            curve?: number,
        },

        point?: {
            borderWidth?: number,
            radius?: number,
            rotation?: number,
            style?: IPointStyle,
        },
    }[],
    axis?: {
        r?: IRadialAxis,
    }
}