If you search the documentation, you can find the following example within WebChart:
Var sales() As Double = Array(345890.0, 421934, 456908, 567987)
Var ds As New WebChartLinearDataset("Sales", Color.Blue, True, sales)
Me.AddDataset(ds)
Me.AddLabels("Q1", "Q2", "Q3", "Q4")
WebChart has three objects to handle different graphics: linear, scatter, and circular.
From the three above, the ability to make the following graphics modes is derivated in Bar, Bubble, Donut, Line, Pie, PolarArea, Radar, Scatter.
Does anyone have a similar code to the one-sample WebChar in the XOJO, documentation, related to WebChartScatterDataset?