line property

dynamic line

Implementation

external dynamic
    /*{
  /**
   * Set if null data point will be connected or not.
   * If true set, the region of null data will be connected without any data point.
   * If false set, the region of null data will not be connected and get empty.
   */
  connectNull?: boolean;

  /**
   * Change step type for step chart.
   * 'step', 'step-before' and 'step-after' can be used.
   */
  step?: {
    type: "step" | "step-before" | "step-after";
  };

  /**
   * Set if min or max value will be 0 on line chart.
   */
  zerobased?: boolean;

  /**
   * If set, used to set a css class on each line.
   */
  classes?: string[];

  /**
   * Set to false to not draw points on linecharts. Or pass an array of line ids to draw points for.
   */
  point?: boolean | string[];
}*/
    get line;
void line=(dynamic v)

Implementation

external set line(
    dynamic
        /*{
  /**
   * Set if null data point will be connected or not.
   * If true set, the region of null data will be connected without any data point.
   * If false set, the region of null data will not be connected and get empty.
   */
  connectNull?: boolean;

  /**
   * Change step type for step chart.
   * 'step', 'step-before' and 'step-after' can be used.
   */
  step?: {
    type: "step" | "step-before" | "step-after";
  };

  /**
   * Set if min or max value will be 0 on line chart.
   */
  zerobased?: boolean;

  /**
   * If set, used to set a css class on each line.
   */
  classes?: string[];

  /**
   * Set to false to not draw points on linecharts. Or pass an array of line ids to draw points for.
   */
  point?: boolean | string[];
}*/
        v);