score:23

Accepted answer

i had a battle with this today too. you need to get a bit more specific with your dataset. in a line chart "datasets" is an array with each element of the array representing a line on your chart. chart.js is actually really flexible here once you work it out. you can tie a line (a dataset element) to an x-axis and/or a y-axis, each of which you can specify in detail.

in your case if we stick with a single line on the chart and you want the "time" part of the entry to be along the bottom (the x-axis) then all your times could go into the "labels" array and your "number" would be pin-pointed on the y-axis. to keep it simple without specifying our own scales with x and y axes and given this data:

var mydata = [{time:"10:00", number: "127"},
              {time:"11:00", number: "140"},
              {time:"12:00", number: "135"},
              {time:"13:00", number: "122"}];

you could set up the "data" property of your chart to be:

var data = {
    labels: ["10:00", "11:00", "12:00", "13:00"],
    datasets: [
        {
            label: "my first dataset",

            // insert styling, colors etc here

            data: [{x: "10:00", y: 127},
                   {x: "11:00", y: 140},
                   {x: "12:00", y: 135},
                   {x: "13:00", y: 122}]
        }
    ]};

note that the data array is now a bit more specific with each element of data plotting itself on the x-axis by referencing one of the labels rather than just being a raw number. you can now put another dataset object in the datasets array following this pattern and have two lines, obviously give your lines different colours and names ("label").

hope this helps.

score:4

since there's a number of questions in your post, i'll try to help out with at least some of them. in the case of your entry model with a number and a time you should create a scattered graph. here you define data objects with x and y values as shown in my example below. it requires that each entry x has a corresponding y. have a look at the scatter chart. http://www.chartjs.org/docs/#line-chart-scatter-line-charts

var d = new date();
var scatterchart = new chart(ctx, {
    type: 'line',
    data: {
        datasets: [{
            label: 'scatter dataset',
            data: [{
                x: new date().setdate(d.getdate()-5),
                y: 0
            }, {
                x: new date(),
                y: 10
            }, {
                x: new date().setdate(d.getdate()5),
                y: 5
            }]
        }]
    },
    options: {
        scales: {
            xaxes: [{
                    type: "time",
                    time: {
                        format: "hh:mm",
                        unit: 'hour',
                        unitstepsize: 2,
                        displayformats: {
                            'minute': 'hh:mm', 
                            'hour': 'hh:mm'
                        },
                        tooltipformat: 'hh:mm'
                    },
                    gridlines: {
                        display: false
                    }
                }],
        }
    }
});

score:12

i found a really good solution here: https://github.com/chartjs/chart.js/issues/3953

basically, you can add in your own 'labels' property to each dataset and leverage it in the callbacks for the xaxes labels, tooltips, or whatever you like.

var ctx = $("#mychart");
var mychart = new chart(ctx, {
    type: 'doughnut',
    data: {
        datasets: [{
            data: [1, 2, 3, 4, 5],
            backgroundcolor: [
                'green',
                'yellow',
                'red',
                'purple',
                'blue',
            ],
            labels: [
                'green',
                'yellow',
                'red',
                'purple',
                'blue',
            ]
        }, {
            data: [6, 7, 8],
            backgroundcolor: [
                'black',
                'grey',
                'lightgrey'
            ],
            labels: [
                'black',
                'grey',
                'lightgrey'
            ],
        },]
    },
    options: {
        responsive: true,
        legend: {
            display: false,
        },
        tooltips: {
            callbacks: {
                label: function(tooltipitem, data) {
                    var dataset = data.datasets[tooltipitem.datasetindex];
                    var index = tooltipitem.index;
                    return dataset.labels[index] + ': ' + dataset.data[index];
                }
            }
        }
    }
});

what's important here is this piece:

        tooltips: {
            callbacks: {
                label: function(tooltipitem, data) {
                    var dataset = data.datasets[tooltipitem.datasetindex];
                    var index = tooltipitem.index;
                    return dataset.labels[index] + ': ' + dataset.data[index];
                }
            }
        }

Related Query

More Query from same tag