c3-tick-fitting.js 801 B

1234567891011121314151617181920212223
  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 i = c3.generate({
  9. bindto: "#tick-fitting",
  10. size: { height: 400 },
  11. color: { pattern: ["#2962FF", "#E91E63"] },
  12. data: {
  13. x: "x",
  14. columns: [
  15. ["x", "2018-01-31", "2018-02-31", "2018-03-31", "2018-04-28"],
  16. ["days", 150, 400, 100, 30]
  17. ]
  18. },
  19. axis: { x: { type: "timeseries", tick: { fit: !0, format: "%e %b %y" } } },
  20. grid: { y: { show: !0 } }
  21. });
  22. });