c3-timezone.js 908 B

12345678910111213141516171819202122232425
  1. /*************************************************************************************/
  2. // -->Template Name: Bootstrap Press Admin
  3. // -->Author: Themedesigner
  4. // -->Email: niravjoshi87@gmail.com
  5. // -->File: c3_chart_JS
  6. /*************************************************************************************/
  7. $(function() {
  8. var t = c3.generate({
  9. bindto: "#axis-timezone",
  10. size: { height: 400 },
  11. color: { pattern: ["#2962FF", "#4fc3f7"] },
  12. data: {
  13. x: "x",
  14. xFormat: "%Y",
  15. columns: [
  16. ["x", "2015", "2014", "2013", "2012", "2011", "2010"],
  17. ["option1", 250, 150, 400, 100, 200, 30],
  18. ["option2", 350, 250, 500, 200, 340, 130]
  19. ]
  20. },
  21. axis: { x: { type: "timeseries", localtime: !1, tick: { format: "%Y-%m-%d %H:%M:%S" } } },
  22. grid: { y: { show: !0 } }
  23. });
  24. });