Marker bug fix

This commit is contained in:
Dennis Eichhorn 2017-01-10 21:53:04 +01:00
parent fb5ea0d5b4
commit ad6cb9e3c0
2 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,6 @@
jsOMS.Chart.AreaChart = function (id)
{
this.chart = new jsOMS.Chart.LineChart(id);
this.chart.getChart().dataSettings.marker.visible = false;
this.chart.getChart().subtype = 'area';
};

View File

@ -5,6 +5,7 @@
jsOMS.Chart.StackedAreaChart = function (id)
{
this.chart = new jsOMS.Chart.LineChart(id);
this.chart.getChart().dataSettings.marker.visible = false;
this.chart.getChart().subtype = 'stacked';
};