UNPKG
chart.js-modder
Version:
latest (2.6.1)
2.6.1
Simple HTML5 charts using the canvas element.
www.chartjs.org
chartjs/Chart.js
chart.js-modder
/
src
/
charts
/
Chart.Line.js
12 lines
(7 loc)
•
163 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
module
.
exports
=
function
(
Chart
) {
Chart
.
Line
=
function
(
context, config
) { config.
type
=
'line'
;
return
new
Chart
(context, config); }; };