interface fChartDesc {
    dfield: string;
    evalCategory?: boolean;
    evalSerie?: boolean;
    options: object;
    style?: string | object;
    title: string;
    type: "pie" | "bar" | "line" | "bubble" | "column" | "area" | "radar" | "BoxPlot" | "Scatter";
}

Properties

dfield: string

name of the object option ot

evalCategory?: boolean

Sign that client translates category names default: false

evalSerie?: boolean

Sign that client should translate data series names default : false

options: object

Options compatible with options for chosen type

style?: string | object

Optional style for chart container

title: string

optional chart title - evaluated or translated string

type: "pie" | "bar" | "line" | "bubble" | "column" | "area" | "radar" | "BoxPlot" | "Scatter"

Type of the grapth to show Let's note that data and options types should be compatible with chosen type