create static method

VlChart create(
  1. VlDataset data
)

Builds a chart over a dataset.

data The rows the chart draws.

Returns A chart with no marks yet.

See also VlDataset.

Implementation

static VlChart create(VlDataset data) {
  VlChart c =  VlChart();
  c.data = data;
  return c;
}