c3.js を使い始めたばかりで、x 軸の目盛りの値を指定する方法がわかりません。値は type1、type2、type3... で、私のコードは次のとおりです。
$(document).ready(function(){
var mammoReconstructionsAcceptedChart = c3.generate({
bindto: '#mammo_reconstructions_accepted',
data: {
x: 'x',
columns: [
['x', 'type1', 'type2', 'type3', 'type4', 'type5', 'type6'],
['data1', 30, 200, 100, 400, 150, 250]
]
},
axis: {
x: {
tick: { format: d3.format("") }
}
}
});
});