billboard.js is a Re-usable, easy interface JavaScript chart library based on D3 v4+.
Questions tagged [billboard.js]
62 questions
0
votes
0 answers
using billboard.js and angular i need to change the color of the graph for the dynamic data .How can i achieve i as i am new to billboard
graphData() {
let columns = [];
columns.push(["x", ...this.sensorData.map(t => Date.parse(t.messageTimeStamp))]);
columns.push(["Temperature", ...this.sensorData.map(t => t.temperature)]);
// columns.push(["Class",…

kum
- 1
- 1
0
votes
1 answer
Reducing the number of ticks in billboard.js chart
I am creating small charts with billboard.js and would like to reduce the number of ticks on the vertical axis to make the chart more readable. This can be achieved by setting the tick count but this forces an exact number of ticks, instead of…

Abiel
- 5,251
- 9
- 54
- 74