import { Molecule } from "./molecule"; import { IMolecules } from "../interfaces"; import { PropertyBoolean, PropertyPixelSelectable, PropertyBackgroundColorStyle, PropertyShadowSelectable } from "../common/props"; /** * The chart line molecule. * @category Molecules */ export declare class ChartLine extends Molecule { /** The line background color style property */ lineBackgroundColor: PropertyBackgroundColorStyle; /** The line width property */ lineWidth: PropertyPixelSelectable; /** The line shadow property */ lineShadow: PropertyShadowSelectable; /** The chart lines display property */ chartLinesDisplay: PropertyBoolean; /** The Y labels display property */ yLabelsDisplay: PropertyBoolean; constructor(molecules: IMolecules); deserialize(obj: any): void; serialize(): any; }