Module:Chart: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

7 December 2023

  • curprev 07:3907:39, 7 December 2023Um talk contribs 560 bytes +560 Created page with "local p = {} function p.chart(frame) local data = frame.args.data or '[0, 2, 10, 3, 8]' local success, decodedData = pcall(mw.text.jsonDecode, data) if not success then decodedData = {0, 2, 10, 3, 8} end local chartData = { labels = {"Auction", "Reality", "Contemporary", "Historical", "Rare"}, datasets = {{ data = decodedData }} } return '<div id="chart-data" style="display:none;">' .. mw.text.json..."