从xaxis跳过角度2 Highcharts的周末

时间:2018-03-05 11:46:03

标签: angular highcharts highstock angular2-highcharts

我有问题在我的角度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>

enter image description here

0 个答案:

没有答案