我正在使用Chart.js添加饼图。我能够显示图表,但想要显示标签,百分比和图例。
有谁知道怎么做?
以下是我如何生成饼图:
dashboardRegion: (survey) ->
male = 0
female = 0
survey.get('responses').each (response) ->
if response.get('completed')
if response.get('gender') == "male"
male += 1
else
female += 1
genderData = [
{
value: male,
color:"#9A3334",
highlight: "#9A3334",
label: "Male",
labelFontFamily : "Arial",
labelFontStyle : "normal",
labelFontSize : 24,
labelFontColor : "#666"
},
{
value: female,
color: "#217C7E",
highlight: "#217C7E",
label: "Female",
labelFontFamily : "Arial",
labelFontStyle : "normal",
labelFontSize : 24,
labelFontColor : "#666"
}
];
答案 0 :(得分:0)