hcharts 怎么让饼状图跟柱状图怎么让实际数量跟百分比一起显示
tooltip属性里面配置 显示格式自己配置 point.y表示值 应该就是你这里的实际数量,point.percentage:.1f表示百分比。使用时都要在这两个变量外面加大括号,百分比只是数字,需要自己加百分比符号。例如:tooltip: {pointFormat: '{point.name}:{point.y}百分比: {point.percentage:.1f}%'},
http://blog.csdn.net/linfanhehe/article/details/11948005