Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. chart.addPlot("default", {type: StackedColumns, gap: 20})
  2. .addAxis("x")
  3. .addAxis("y", {vertical: true, min: 0})
  4. .setTheme(Claro)
  5. .addSeries("Series A", [1, 2, 3])
  6. .addSeries("Series B", [7, 8, 9])
  7. .addSeries("Series C", [4, 5, 6])
  8. .render();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement