Interface MultipleType

interface MultipleType {
    axis: {
        x: {
            label: string;
        };
        y: {
            label: string;
        };
    };
    series: {
        label: string;
        x: number[];
        y: number[];
    }[];
}

Properties

Properties

axis: {
    x: {
        label: string;
    };
    y: {
        label: string;
    };
}

Type declaration

  • x: {
        label: string;
    }
    • label: string
  • y: {
        label: string;
    }
    • label: string
series: {
    label: string;
    x: number[];
    y: number[];
}[]

Type declaration

  • label: string
  • x: number[]
  • y: number[]