mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-23 00:26:52 +01:00
15 lines
228 B
JavaScript
15 lines
228 B
JavaScript
(function() {
|
|
"use strict";
|
|
|
|
var root = this;
|
|
var Chart = root.Chart;
|
|
var helpers = Chart.helpers;
|
|
|
|
Chart.Line = function(context, config) {
|
|
config.type = 'line';
|
|
|
|
return new Chart(context, config);
|
|
}
|
|
|
|
}).call(this);
|