Fusion Chart 每个变量的不同绘图类型

Fusion Chart Different plot type for each variable

如果有人能帮我举个例子,也许在 fiddle 或 codepen 中创建 (html, JS) such a graph。 fusioncharts.com 文档中的示例对我帮助不大。

我创建了一个 fiddle 来简化您在 link 中提供的示例。在代码注释中也描述了一些东西。

/** Simple steps that may help you to understand easily
1. What schema is?
2. How to provide data
**/

// 3. How to create datatable
const dataStore = new FusionCharts.DataStore();
dataSource.data = dataStore.createDataTable(data, schema);

//4. pass the dataTable in fusionTime configuration to dataSource
new FusionCharts({
  type: "timeseries",
  renderAt: "chart-container",
  width: "100%",
  height: "500",
  dataSource
}).render();

要了解架构、数据、dataStore 和 dataTable,请访问 this link