Charts and graphs
UI mode
Data format
[
{ "date": "2022-03-01", "fruit": "apple", "count": 4 },
{ "date": "2022-03-01", "fruit": "banana", "count": 6 },
{ "date": "2022-04-01", "fruit": "grape", "count": 10 },
{ "date": "2022-04-01", "fruit": "apple", "count": 3 },
{ "date": "2022-04-01", "fruit": "banana", "count": 2 }
]{
"date": [
"2022-03-01",
"2022-03-01",
"2022-04-01",
"2022-04-01",
"2022-04-01"
],
"fruit": ["apple", "banana", "grape", "apple", "banana"],
"count": [4, 6, 10, 3, 2]
}Chart type
X-axis
Chart series
Echarts JSON
Common Properties of the Chart Components
Property Name
Type
Description
Common Events of the Chart Components
Event Name
Description
Last updated
Was this helpful?