Javascript examples for Chart.js:Line Chart
draw a Line Chart with both solid and dotted line
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://rawgit.com/nnnick/Chart.js/f3eb6f4a433b4f34a582842dcf7b42f710861a7d/Chart.js"></script> <script type="text/javascript"> window.onload=function(){/*from w w w. ja v a 2s .co m*/ var lineChartData = { labels: ['A', 'B', 'C', 'D', 'E', 'F', 'G'], datasets: [{ label: "My First dataset", data: [1, 8, 3, 4, 2, 3, 4], borderColor: '#66f', borderDash: [20, 30], pointBackgroundColor: "transparent" },{ label: "My First dataset", data: [1, 8, 3, 4, 2, , ], borderColor: '#66f', pointBackgroundColor: "transparent" }] }; var ctx = document.getElementById("chart").getContext("2d"); var myChart = new Chart(ctx, { type: "line", data: lineChartData, options: { elements: { line: { fill: false } } } }); } </script> </head> <body> <canvas id="chart"></canvas> </body> </html>