import { ChartModel } from './chart.model'; /** * Line chart model definition */ export declare class LineChartModel extends ChartModel { /** * Set the minimum value of the y axis to the minimum value in the data, instead of 0. Default: false. */ autoScale?: boolean; /** @hidden*/ constructor(values?: Object); }