I am faced with the following dilemma:
I am using the api C3.js of statistics in a project, where I want to make a graph of time of day and the accesses to a building, I have:
var chart4 = c3.generate({
bindto: '#estadisticaTemporal',...
I would like to know if it is possible to give events to a legend created by myself so that these events act on the graph, in the same way that the C3 legend of the graph acts.
Currently the code I have is the following:
$('#datos_grafica_w...
I'm doing a stacked area chart with c3.js, but the graph does not look good when negative values are used.
Example (Also available in JSFiddle ):
var chart = c3.generate({
data: {
columns: [
['data1', 300,...
I am trying to align the Y axes with respect to the value 0, example:
link
I have temporarily solved it by putting a padding, but it is extremely sloppy and when re-dimensioning the graph or changing the data it is misplaced (unless the pad...