c3-column-oriented.js 756 B

123456789101112131415161718192021
  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 n = c3.generate({
  9. bindto: "#column-oriented",
  10. size: { height: 400 },
  11. color: { pattern: ["#2962FF", "#4fc3f7", "#f62d51"] },
  12. data: {
  13. columns: [
  14. ["option1", 50, 60, 40, 50, 20, 30],
  15. ["option2", 220, 130, 240, 90, 130, 200],
  16. ["option3", 250, 250, 400, 160, 200, 300]
  17. ]
  18. },
  19. grid: { y: { show: !0 } }
  20. });
  21. });