LegendOptions constructor

LegendOptions({
  1. bool show,
  2. dynamic hide,
  3. String position,
  4. dynamic inset,
  5. dynamic item,
})

Implementation

external factory LegendOptions(
    {bool show,
    dynamic /*bool|List<String>|String*/ hide,
    String position,
    dynamic
        /*{
      anchor?: string;
      x?: number;
      y?: number;
      step?: number;
  }*/
        inset,
    dynamic
        /*{
      /**
       * Set click event handler to the legend item.
       */
      onclick?(id: any): void;
      /**
       * Set mouseover event handler to the legend item.
       */
      onmouseover?(id: any): void;
      /**
       * Set mouseout event handler to the legend item.
       */
      onmouseout?(id: any): void;
  }*/
        item});