hide method

void hide([
  1. dynamic targetIds,
  2. dynamic options
])

This API hides specified targets. You can specify multiple targets by giving an array that includes id as String. If no argument is given, all of targets will be hidden. If withLegend is set true, legend will be hidden together with the specified data.

Implementation

external void hide(
    [dynamic /*List<String>|String*/ targetIds,
    dynamic /*{ withLegend: boolean }*/ options]);