我有问题在我的角度2应用程序中跳过highcharts中的周末。我在highstock中看到有选项序数:如果跳过周末,它是真的,但它对我不起作用。是否有任何替代方法可以跳过周末。从星期二开始,病房运作良好。
xAxis: {
type: "datetime",
tickInterval: this.tickinterval,
//ordinal: true,
breaks: [{
from: this.fromdate,
to: this.todate,
repeat: this.repeat
}],
labels: {
formatter: function () {
return highcharts.dateFormat('%H', this.value);
}
},
plotLines: this.plotlines,
max: this.maxdate,
},
<chart [options]="chartOptions" type="chart" class="chartstyle" style="height:50%"> </chart>