Skip to content

Line Chart

You can present your data as a linechart:

Dates1s2
2024200150
2025300200
2026400340
2027150405
2028305300
sqlseal
TABLE data = table(0)
CHART 
{
	xAxis: { type: 'category' },
	yAxis: { },
    legend: { show: true }, 
	series: [{ type: 'line' }, { type: 'line' }]
}
SELECT * FROM data

line chart