New to C3 here. I am trying to make a simple scatter plot. I thought this would work (c3_test.csv is the same data set from samples.)
var chart = c3.generate({
data: {
url: 'c3_test.csv',
x: 'data1',
…
I have a analytics module which is based on bootstrap 3, angular, grid by JQgrid and graphs by C3. The problem is when I go to the grid and select a row in JQgrid it looses focus and scrolls back to the top where new graph is generated,
focus when…
I'm using c3.js which is a "D3-based reusable chart library." I have also created my own legend for a donut chart with a pie chart inside. I want to link the legend and charts so that if I click a legend item, it'll trigger animation on both the…
I've already spent days trying to figure out ways to format data in such a way that C3.js is happy with it, and I've tried many things, like row by row aggregations, inner and outer joins (thanks to some of you lovely people who've helped), and…
i have a popup that was designed in a html page.
i need to show the message "This batch contains " + TargetCount+ " records. Please press Continue to finish importing your data.", near the buttons outside the border,where the "TargetCount" returns…
I've looked through all of the documentation and can't find a way to hide the keys for a bar graph.
Basically, I'd like to remove the 'total' and color at the bottom. Has anyone found a way to do this?
I'm using c3 + d3 + javascript to create a line chart in a webpage. I managed to create a code that was working fine locally, but when I uploaded it to my server, the code stopped working. I explain the problem below:
Problem: c3.generate is not…
I'm using C3.js to visualize data, and I don't understand how the positioning and sizing of the chart works.
When I add/initialize the chart, all other elements move. In other words: it's impossible to position any elements in the horizontal plane…
I am trying to create a C3 bar chat. Need to pass the JSON dynamically.
JSON: JSONdata
{ "applicationName": "app1", "frequency": 1 }, { "applicationName": "app2", "frequency": 54 }, { "applicationName": "app3", "frequency": 3 }
I have the…