score:23
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];
}
}
}
Source: stackoverflow.com
Related Query
- Chart.js Line-Chart with different Labels for each Dataset
- chart.js Line chart with different background colors for each section
- How to display Line Chart dataset point labels with Chart.js?
- Chart.js - Line charts with different colors for each border lines
- ChartJS/High Charts Radar chart - Different radial axis labels for each category that appear on hover
- 2 Line Chart with different labels | Chart.js
- Chart.js manipulate each bar in chart with different labels
- Different labels needed for second line graph, chart js
- Chartjs random colors for each part of pie chart with data dynamically from database
- Chart.js how to show cursor pointer for labels & legends in line chart
- Chart.js Mixed Bar and Line chart with different scales
- Different color for each column in angular-chartjs bar chart
- Can I specify a different font size for each row of text in Chart Title?
- ChartJS - Line Chart with different size datasets
- Line chart with large number of labels on X axis
- chart js - Apply different color for each x-axes label
- Multiple line labels for chart js
- Add a text as tooltip for each point on a line chart
- ChartJS (React) Line Chart - How to show single tooltip with data and labels from 3 (multiple) dataset?
- Updating chart.js chart with dataset of different size
- create different labels for different data chart js
- Chart.js line chart with correctly spaced x labels
- chart.JS i want to put different color for each Y axis value grid line color
- How to set X coordinate for each bar with react chart js 2?
- Issue with chartjs linear gradient for the mixed bar chart in ReactJS is not calculated for each individual Bars
- angular-chart.js : issue with pointHoverBorderColor property for line chart
- How do I get a different label for each bar in a bar chart in ChartJS?
- With Chart js, I am trying to color every 7th vertical (x axis) grid line (representing each week beginning visually)
- Charts JS: Doughnut chart and hiding tooltip for specific data index within each dataset
- Add different labels in a line chart - Chart.js
More Query from same tag
- How can I set a class to a HTML element which is created by custom tooltip function?
- ChartJS: two axes in horizontalBar chart
- Chart JS Displays Only Bigger Dataset But Has Both Datasets?
- Why tooltip position absolute does not apply using js?
- Prevent label of another data from being toggled whenever a label from one data is toggled
- why my multiple chart.js does not work properly?
- Chart js tooltip position above chart
- Update the Chartjs push data with ajax
- Chart.js - make background text responsive
- Chartjs custom dynamic legend overflowing
- ChartJs php array into 'labels' and 'datasets'
- Chart.js v3.2 Change Radar background shape from Polygonal-Triangle to Circular
- Add data to line chart js dynamically with multiple lines
- Update Chart in Javascript using Chart.js
- Change section element every 20 seconds
- ChartJS 3.7.1 tooltip callback, get label value for the next index
- ChartJS 3 doesn't display legend
- Chart.js not showing legends
- Chart.js add padding to scales
- How to bind data from Controler to chartjs line chart to create it as dynamic?
- Set custom colours for tooltip squares Chart.js
- Last value not showing in bar graph of charts.js-library
- Old data flickering after hover on line graph Chart.js
- Stacked Horizontal Bars not in align Chart JS
- Chart.js - access yAxes properties
- Chart.Mvc scale begin at 0 - Nullable bool property remains null
- Changing line color below specific value in Chart.js
- How do I change axis, title, legend formatting on chartjs template
- Chart JS: Always show tooltips in a multi dataset line chart
- how to change default font family in react-chartjs-2