highcharts柱状图的数据怎么显示到中间去了

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了highcharts柱状图的数据怎么显示到中间去了相关的知识,希望对你有一定的参考价值。

如图 这样怎么解决?在线等,急求!!!
已解决

参考技术A 曲线图、区域图、区域曲线图、柱状图、饼装图、散布... reflow 是不是自使用图表区域高度和宽度,如果没有设置... Highcharts已默许提供了多种色彩方案,当要显示的...

highcharts做柱状图,怎样设置柱子宽度

可以通过设置plotOptions内对应series的pointWidth也就是数据点的宽度值加以控制,完整代码如下所示:

view sourceprint?
01.$(function ()
02.$('#container').highcharts(
03.chart:
04.type: 'bar'
05.,
06.xAxis:
07.categories: ['Jan', 'Feb', 'Mar']
08.,
09.
10.plotOptions:
11.series:
12.pointWidth: 3 //柱子的宽度值 单位为px
13.
14.,
15.credits:
16.text: 'highcharts的博客',
17.href: 'http://www.stepday.com/myblog/?highcharts',
18.position:
19.align: 'right', //水平居右
20.verticalAlign: 'bottom' //垂直底部
21.,
22.style:
23.cursor: 'pointer', //鼠标样式为手型
24.color: '#FF0000', //字体颜色
25.fontSize: '10px' //字体大小
26.
27.,
28.series: [
29.data: [29.9, 71.5, 106.4]
30.]
31.);
32.);
参考技术A

设置 plotOptions.column.pointWidth  即可,

$("#container").highcharts(
    // ...
    plotOptions: 
        column: 
            pointWidth:20 
            // 见 API 文档  http://www.hcharts.cn/api/index.php#plotOptions.column.pointWidth
        
    
    // ...
);

以上是关于highcharts柱状图的数据怎么显示到中间去了的主要内容,如果未能解决你的问题,请参考以下文章

highcharts做柱状图,怎样设置柱子宽度

关于HighCharts由表格生成的柱状图改变柱状图颜色

如何excel 柱状图的柱子之间的距离靠近一些

如何在highcharts柱状图初始化的时候在柱状图上显示数据

highcharts 柱状图如果有负数要怎么显示

highcharts 柱状图如果有负数要怎么显示