c3-data-from-url.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*************************************************************************************/
  2. // -->Template Name: Bootstrap Press Admin
  3. // -->Author: Themedesigner
  4. // -->Email: niravjoshi87@gmail.com
  5. // -->File: c3_chart_JS
  6. /*************************************************************************************/
  7. $(function(e) {
  8. // Callback that creates and populates a data table, instantiates the line chart, passes in the data and draws it.
  9. var lineChart = c3.generate({
  10. bindto: '#data-from-url',
  11. size: { height: 400 },
  12. color: {
  13. pattern: ['#2962FF', '#4fc3f7', '#f62d51']
  14. },
  15. // Create the data table.
  16. data: {
  17. url: 'dist/js/pages/c3-chart/c3_test.csv'
  18. },
  19. grid: {
  20. y: {
  21. show: true
  22. }
  23. },
  24. });
  25. // Instantiate and draw our chart, passing in some options.
  26. setTimeout(function() {
  27. c3.generate({
  28. data: {
  29. url: 'dist/js/pages/c3-chart/c3_test.json',
  30. mimeType: 'json'
  31. }
  32. });
  33. }, 1000);
  34. });