64 questions
0
votes
1
answer
132
views
How to change billboard.js chart type after generation?
I'm trying to change the chart type on the fly (ie from a dropdown), just like we have in C3's .transform API, but couldn't find any easy way to do it.
It works when I call chart.load() with same data ...
1
vote
0
answers
44
views
Axis extent option doesn't set default subchart for timeseries axis
I'm beginner with billboard.js.
I have a big payload of data starting from 1980 and ending to now (2024). I want to first show only the last 10 years of the data and then being able to zoom out or in.
...
0
votes
1
answer
153
views
Rotated barChart in a Billboard.js
I use billboard.JS to display a rotated BarChart. But I'm trying to get category values on the y-axis, using this code
var data = [
["data11", 30],
["data2", 130],
["...
0
votes
1
answer
348
views
How do I fix import error in billboard.js
I'm switching from the c3 package to billboard.js in a Vue 3 application. When I run the application, I get the following error:
[billboard.js] Please, make sure if spline module has been imported
...
0
votes
1
answer
154
views
billboard.js columns from array
I have asked yet a similar question here
Actually I need to make dynamic this operation, beginning from this example:
$.when(myfun(my_args))
.done(function(res){
var one_x = ["label1_x"], ...
0
votes
0
answers
201
views
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 ...
0
votes
1
answer
196
views
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 ...
0
votes
1
answer
349
views
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 ...
1
vote
1
answer
719
views
Billboard.js - stacked chart total
Is there a way to display the total/sum of values on a stacked chart on the tooltip ?
We currently found a way by inserting total/sum into column labels but they appear also on the x axis labels which ...
0
votes
1
answer
211
views
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 ...
0
votes
1
answer
67
views
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 ...
0
votes
0
answers
123
views
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 ...
0
votes
1
answer
577
views
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 ...
1
vote
1
answer
155
views
I am facing problem with - Error: <circle> 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 ...
0
votes
0
answers
328
views
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 ...