All public logs

Jump to navigation Jump to search

Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 00:00, 17 October 2024 Alex talk contribs created page Module:Chart data/doc examples (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 = '...")