1
下面是c3圖表代碼片段。我要求X軸上的條形標籤爲「總增益」。但是我無法得到這個結果,只有一個沒有空格的單詞可以像「Totalgain」那樣被允許。請參閱下面的評論。如何在Javascript c3圖表中使用帶間距的標籤?
c3.generate({
data: {
columns: Figurefour,
groups: [
['Trending', 'Total gain']
],
colors: {
Trending: '#33fefe',
Total gain : '#22cfcf'//"Total gain" errors out, only single word(s) like "Totalgain" allowed(no spaces).
}
}
});
有沒有辦法讓空間的標籤工作?