Grid constructor

Grid(
  1. {dynamic x,
  2. dynamic y}
)

Implementation

external factory Grid(
    {dynamic
        /*{
      /**
       * Show grids along x axis.
       */
      show?: boolean;
      /**
       * Show additional grid lines along x axis.
       * This option accepts array including object that has value, text, position and class. text, position and class are optional. For position, start, middle and end (default) are available.
       * If x axis is category axis, value can be category name. If x axis is timeseries axis, value can be date string, Date object and unixtime integer.
       */
      lines?: LineOptions[];
  }*/
        x,
    dynamic
        /*{
      /**
       * Show grids along y axis.
       */
      show?: boolean;
      /**
       * Show additional grid lines along y axis.
       * This option accepts array including object that has value, text, position and class.
       */
      lines?: LineOptions[];
  }*/
        y});