I need to build a line diagram of some function (for example y=x*x). But how to pass the values of x and y to C3 columns?
Here I have the code, that build just a simple line diagram, so how do I need to modify it?
var chart = c3.generate({
data: {
xs: {
'data1': 'x1',
'data2': 'x2',
},
columns: [
['x1', 10, 30, 45, 50, 70, 100],
['x2', 30, 50, 75, 100, 120],
['data1', 30, 200, 100, 400, 150, 250],
['data2', 20, 180, 240, 100, 190]
]
}
});