Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 313 Bytes

data.md

File metadata and controls

22 lines (16 loc) · 313 Bytes

Source Data

Documents are forwarded from G2

Data Formats

Chart data supports two data formats:

  • JSON
  • Instance of DataView

JSON (Array)

Example:

var data = [
  {"gender":"male","count":40},
  {"gender":"female","count":30}
];

DataView

See the detail at DataSet.