Alex
Created page with "-- <nowiki> local p = {} local chart = require( 'Module:Chart data' ) function p.line() local plot = chart.newChart{ type = 'line' } :setDimensions( '10vw', '10vh', 300, 300, true ) :setTitle( 'Line chart' ) :setXLabel( 'x axis label' ) :setYLabel( 'y axis label' ) plot.options.fill = true for i = 1, 2 do local set = plot:newDataSet() set.data = { i^2, (i+1)^2, (i+2)^2, (i+3^2), (i+4)^2 } set.label = '..."