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
billboard.js: timeseries with a tag demonstrated in tooltip
I have a time series to plot with billboard.js. The series consists of timestamp, value, and a tag. The tag is categorical (string). I would like to demonstrate the tag value in the tooltip for each point and avoid demonstrating the tag at the…

0x2207
- 878
- 1
- 6
- 20
0
votes
0 answers
billboard.js multiple lines grouped by column json sourced
I'm driving crazy about this feature, I just need to draw 11 lines in a single chart. The data is a json sourced by ajax and I just get 3 column: index, label, value. The chart axes are index as x and values as y, for each label I need to draw his…

rivaldid
- 85
- 1
- 11
0
votes
1 answer
Billboardjs - Hatched bar graph
Bar graph design:
I am using billboardjs(for Angular) bar graph to display some analytics. Now my requirement is to show the bars for comparision. One bar should be in dark color and another should be with hatched coloring. Attaching the image of…

Mahesh Dharwad
- 79
- 1
- 8
0
votes
1 answer
Billboard.js get chart object using bb.instance via chart name (id)
I am using Billboard.js and displaying multiple charts using bb.generate. Everything is working fine, I can get a chart object using bb.instance[somenumber]. This will get me a Billboard chart based on which number I give, respective to the order in…

space
- 11
- 3
0
votes
1 answer
Billboard.js: Let x-ticks overflow svg when padding is 0
I am creating a some charts with billboard.js and stumbled upon some overflow logic i can't sort out.
Case: A simple linechart w/o labels on y-axis (these will be solved on a container level and not in the chart). I want the chart to have zero…

adam
- 1
- 2
0
votes
1 answer
Billboard.js 3.5.1 with angular 6.0 gives ERROR TypeError: t.hasType is not a function when ng serve --prod
I try to use Billboard.js with an angular6.0 application
when i run with ng serve , application works fine.
when I run with ng serve --prod, application gives the following error when application gerenates chart…

Florence
- 1,641
- 3
- 13
- 23
0
votes
0 answers
Billboarder package not working anymore in combination with rmarkdown
Edit: I fumbled around with older versions of rmarkdownand it turns out this problem starts occurring from version 2.11 onwards. I will open an issue there
I used to be able to render graphs in rmarkdown with the billboarder package (based on…

koolmees
- 2,725
- 9
- 23
0
votes
1 answer
billboard.js custom label for each data series
Is it possible to apply a custom label for each data series in billboard.js? As opposed to using the value, id, or index of the data point in the series?
I've been using the following billboard.js documentation for reference:…

bolaadebesin
- 13
- 3
0
votes
1 answer
I am facing problem with - Error: attribute r: Expected length, "NaN" using Billboard js chart
I am try to display a billboardjs bubble chart using javascript and html.
I included the lib in my index.html file as:
src="/lib/billboard.pkgd.js"
The codes are very simple but when ran, I got the "NaN" error.
this.d3Chart = bb.generate({
…
0
votes
0 answers
billboard.js custom index label
I'm trying to achieve the goal of having a custom index label instead of his 0-n cardinal, the y axis rightly shows the scale values and the x axis use a timeline progression who I need to use to describe the chart point which you have currently…

rivaldid
- 85
- 1
- 11
0
votes
0 answers
Plot not drawn in RMarkdown
After updating my rmarkdown, my plots are not drawn anymore. I can see the plots if I run them locally and I can also plot with alternative plotting packages like ggplot2.
This is an example code:
---
title: "test"
output:
…

koolmees
- 2,725
- 9
- 23
0
votes
1 answer
How to disable legend click on billboard.js charts?
How to disable just the click effect on the billboard.js Donut Chart?
I tried different variants, but nothing works.

Aljoša
- 65
- 5
0
votes
1 answer
Trying to remove black fill under lines in billboard.js line chart
I am using the same example line chart shown here. However, I have black fill under the lines on my chart. How do I remove the black fill from under the lines. In the documentation under LineChartOptions there it only shows two configurable options,…

martinbshp
- 1,073
- 4
- 22
- 36
0
votes
1 answer
billboard.js: The types of 'axis.x.type' are incompatible between these types
axis: {
x: {
type: "category"
}
},
I got error:
The types of 'axis.x.type' are incompatible between these types.
Type 'string' is not assignable to type '"category" | "indexed" | "log" | "timeseries"'
I cannot find how i can…

Lola
- 2,591
- 6
- 24
- 49
0
votes
1 answer
BillboardJS Line Connection
I have a question about billboard.js chart library.
I'm using it with PHP, encoding data from Postgres DB with JSON.
There's no problem with it.
But... there is a problem with line connection/dot merging (sorry for my English).
I need to connect…