highcharts饼状图设置字体格式问题

我在 plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
depth: 35,
dataLabels: {
enabled: true,
format: '{point.name}',
fontSize:'20px',
color:'red'
}
}
}
中设置了字体的颜色和大小,只有颜色能显示,但是大小不管用,另外我想设置字体样式为宋体,这个该怎么设置?

在线等大神回复,如图为显示的效果图片说明

纯JavaScrip图表插件——Highcharts:http://www.cnblogs.com/duanhuajian/p/3152177.html
css字体样式(Font Style) 属性:http://www.jb51.net/css/134609.html
没有找到highcharts配置字体样式的参数,你试一试能不能在div里面设置,看看能不能生效

配置plotOptions.pie.dataLabels.style这个。

  plotOptions: {
            pie: {
                dataLabels: {
                    enabled: true,
                    style: {
                        color:'red',fontSize:'15px'
                    }
                }
            }

http://www.hcharts.cn/api/index.php#plotOptions.pie.dataLabels.style