Линейный график флота;ошибка с режимом времени - PullRequest
0 голосов
/ 17 октября 2018

У меня проблема при использовании Flot

flot line error

Я замечаю, что это происходит в ту же минуту, но в другую секунду

2018/10/16 13:12:55 71,755

2018/10/16 13:12:09 71,700

2018/10 /16 13:10:52 70.781

Вот моя конфигурация:

//Display graph
    $.plot($("#data-chart"), ds, {
        colors: [$chrt_second, $chrt_fourth, "#666", "#BBB"],
        grid: {
            show: true,
            hoverable: true,
            clickable: true,
            tickColor: $chrt_border_color,
            borderWidth: 0,
            borderColor: $chrt_border_color

        },
        zoom: {
            interactive: true
        },
        pan: {
            interactive: true
        },
        selection: {
            mode: "xy"
        },
        xaxis: {
            ticks: 5,
            mode: "time",
            timeformat: "%d/%m/%y",



        },
        yaxis: {
            min: 0,
            ticks: 5,
            max: 110,
            panRange: [-10000, 10000]
        },

        tooltip: true,
        legend: {
            show: true,
            noColumns: 4, // number of colums in legend table
            labelFormatter: null, // fn: string -> string
            labelBoxBorderColor: "#000", // border color for the little label boxes
            container: null, // container (as jQuery object) to put legend in, null means default on top of graph
            position: "ne", // position of default legend container within plot
            margin: [5, 10], // distance from grid edge to default legend container within plot
            backgroundColor: "#efefef", // null means auto-detect
            backgroundOpacity: 1 // set to 0 to avoid background
        },
        tooltipOpts: {
            content: "<b>Date: %x</b> = <span>%y.3</span>",
            dateFormat: "%d/%m/%y %H:%M:%S",
            defaultTheme: false
        },
    });

Может кто-нибудь мне помочь?

...