Why is the data not displayed completely in highstock


                $.getJSON("__MODULE__/Point/trend/product/"+this.nowproduct_no, function (data) {
                    if(data.code !== 1) {
                        alert("");
                        return false;
                    }

                    data = data.data;

                    Highcharts.stockChart("container", {
                        credits: {
                            //
                            enabled: false,
                        },
                        exporting: {
                            //
                            enabled: false,
                        },
                        rangeSelector: {
                            enabled: false,
                            selected: 2,
                            inputDateFormat: "%Y-%m-%d"
                        },
                        title: {
                            text: null
                        },
                        plotOptions: {
                            series: {
                                showInLegend: true
                            }
                        },
                        tooltip: {
                            split: false,
                            shared: true
                        },
                        series: [{
                            // type: "line",
                            id: "000001",
                            name: "",
                            data: data
                        }]
                    });
                });

clipboard.png

clipboard.png
data such as the last entry 2018-10-07 23:22:01
does not show
the beginning does not show
what is the reason

Menu