mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-26 16:38:40 +00:00
Marker bug fix
This commit is contained in:
parent
fb5ea0d5b4
commit
ad6cb9e3c0
|
|
@ -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';
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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';
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user