Cartesian Coordinate System

Cartesian Coordinate System

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
FAKE(json({
    [10, 40],
    [50, 100],
    [40, 20]
}))
MAPVALUE(0, list(value(0), value(1)))
POPVALUE(1)
CHART(
    chartOption({
        title: { text: "Line Chart in Cartesian Coordinate System"},
        xAxis: {},
        yAxis: {},
        series: [
            { type: "line", data: column(0)}
        ]
    })
)
Last updated on