其他分享
首页 > 其他分享> > highcharts 数据千分位显示和饼图的简单用法

highcharts 数据千分位显示和饼图的简单用法

作者:互联网

文章目录


一、数据千分位显示

这个是正常情况下的(默认是1,433,中间的【,】用空格标识的)
在这里插入图片描述

这是去掉空格之后的之后的
在这里插入图片描述

// 写在 HighCharts.chart()的外面,所有的图表都会被统一设置
 HighCharts.setOptions({
          lang: {
            thousandsSep: ''  // 这里也可以写',',页面会显示为1,433
          }
        });
      

二、饼图

在这里插入图片描述

plotOptions: {
            pie: {
              allowPointSelect: true,
              cursor: 'pointer',
              dataLabels: {
                enabled: true,
                distance: -40,   //这里注释掉,数字就会在外面,并且有牵引线
                color: '#000',
                format: '<b>{point.y}个</b>,<br />{point.percentage:.1f}%',
                style: {
                  "fontSize": "13px",
                  "fontWeight": "none",
                  "textOutline": "none"
                }
              },
              showInLegend: true
            }
          },

标签:none,point,433,千分,用法,highcharts,true,HighCharts
来源: https://blog.csdn.net/xixi_csdn/article/details/112969058