jsOMS/Chart/GroupedColumnChart.js
2022-02-19 13:57:39 +01:00

26 lines
610 B
JavaScript
Executable File

(function (jsOMS)
{
"use strict";
jsOMS.Chart.GroupedColumnChart = function (id)
{
this.chart = new jsOMS.Chart.ColumnChart(id);
this.chart.getChart().subtype = 'grouped';
};
jsOMS.Chart.GroupedColumnChart.prototype.getChart = function ()
{
return this.chart.getChart();
};
jsOMS.Chart.GroupedColumnChart.prototype.setData = function (data)
{
this.chart.setData(data);
};
jsOMS.Chart.GroupedColumnChart.prototype.draw = function ()
{
this.chart.draw();
};
}(window.jsOMS = window.jsOMS || {}));