mirror of
https://github.com/chartjs/Chart.js.git
synced 2026-03-09 09:46:51 +01:00
12 lines
163 B
JavaScript
12 lines
163 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(Chart) {
|
|
|
|
Chart.Line = function(context, config) {
|
|
config.type = 'line';
|
|
|
|
return new Chart(context, config);
|
|
};
|
|
|
|
};
|