Remove markers

This commit is contained in:
Dennis Eichhorn 2017-01-10 21:51:30 +01:00
parent f5ce290cff
commit fb5ea0d5b4

View File

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