mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-02-13 16:08:41 +00:00
Marker bug fix
This commit is contained in:
parent
fb5ea0d5b4
commit
ad6cb9e3c0
|
|
@ -5,7 +5,6 @@
|
||||||
jsOMS.Chart.AreaChart = function (id)
|
jsOMS.Chart.AreaChart = function (id)
|
||||||
{
|
{
|
||||||
this.chart = new jsOMS.Chart.LineChart(id);
|
this.chart = new jsOMS.Chart.LineChart(id);
|
||||||
this.chart.getChart().dataSettings.marker.visible = false;
|
|
||||||
this.chart.getChart().subtype = 'area';
|
this.chart.getChart().subtype = 'area';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
jsOMS.Chart.StackedAreaChart = function (id)
|
jsOMS.Chart.StackedAreaChart = function (id)
|
||||||
{
|
{
|
||||||
this.chart = new jsOMS.Chart.LineChart(id);
|
this.chart = new jsOMS.Chart.LineChart(id);
|
||||||
|
this.chart.getChart().dataSettings.marker.visible = false;
|
||||||
this.chart.getChart().subtype = 'stacked';
|
this.chart.getChart().subtype = 'stacked';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user