In my current chart the x-axis values are illegible. how can I improve the presentation or at least that the intervals of the x values have a uniform separation.
var chart = c3.generate({
data: {
xs: {
data1: "data2",
data3: "data4"
},
xSort: false,
columns: [
['data1', -4,3,4,7,8,9,8,7,3],
['data2', -5,2,3,4,5,4,3,2,1],
['data3', Math.random() * 10,Math.random() * 10,Math.random() * 10,Math.random() * 10,Math.random() * 10,Math.random() * 10],
['data4', Math.random() * 10,Math.random() * 10,Math.random() * 10,Math.random() * 10,Math.random() * 10,Math.random() * 10]
]
}
});
https://jsfiddle.net/9zmbq0g0/