blob: d6d17b560b1008f1c5f6a453e48e9570fa9bca5b [file] [log] [blame]
/*
title: Line Chart in Cartesian Coordinate System
category: line
titleCN: 双数值轴折线图
difficulty: 7
*/
option = {
xAxis: {},
yAxis: {},
series: [
{
data: [
[10, 40],
[50, 100],
[40, 20]
],
type: 'line'
}
]
};
export {};