在高图中设置左右边距

时间:2015-01-11 21:32:08

标签: javascript jquery html css highcharts

我创建了一个高图并且遇到了问题。目前,图表似乎并未完全从图表框的开头开始。如何使我的区域高图从图表框开始并结束图表框结束?



$(function() {
  $('#chart-container').highcharts({
    chart: {
            type: 'area',
            renderTo: 'container',
            margin: [0,0,0,0]
        },
    title: {
      text: '',
      x: -20 //center
    },
    subtitle: {
      text: '',
      x: -20
    },
    exporting: {
      enabled: false
    },
    xAxis: {
      categories: ['Januar', 'Februar', 'Marts', 'April', 'Maj', 'Juni', 'Juli', 'August', 'Septemper', 'Oktober', 'November', 'December'],
      "tickWidth": 0,
      lineWidth: 0,
      minorGridLineWidth: 0,
      labels: {
        enabled: false
      },
    },
    yAxis: {
      gridLineWidth: 0,
      minorGridLineWidth: 0,
      title: {
        text: ''
      },
      labels: {
        enabled: false
      },
      
    },
    tooltip: {
      valueSuffix: ' Kr.'
    },
    legend: {
      layout: 'vertical',
      align: 'right',
      verticalAlign: 'middle',
      borderWidth: 0
    },
    credits: {
      enabled: false
    },
    series: [{
      showInLegend: false,
      name: 'Profit',
      data: [0.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6],
      color: '#cc0000',

    }]
  });
});

  .t-box {
background-color: #fff;
border: 1px solid #cccccc;

float: left;
width: 100%;

height: auto;
}

.chart-box {
  width: 100%; 
    height: 300px;

}

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="http://code.highcharts.com/highcharts.js"></script>
	<script src="http://code.highcharts.com/modules/exporting.js"></script>

        <div class="t-box">
        <div class="chart-box">

        <div id="chart-container" style="min-width: 310px; height: 100%; margin: 0 auto"></div>
          
               </div>
        </div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:2)

问题不是你的边缘,而是Highcharts设置xAxis滴答的地方。最简单的修复方法是设置最小/最大值。

$(function() {
  $('#chart-container').highcharts({
    chart: {
      type: 'area',
      renderTo: 'container',
      margin: [0, 0, 0, 0]
    },
    title: {
      text: '',
      x: -20 //center
    },
    subtitle: {
      text: '',
      x: -20
    },
    exporting: {
      enabled: false
    },
    xAxis: {
      categories: ['Januar', 'Februar', 'Marts', 'April', 'Maj', 'Juni', 'Juli', 'August', 'Septemper', 'Oktober', 'November', 'December'],
      "tickWidth": 0,
      lineWidth: 0,
      minorGridLineWidth: 0,
      labels: {
        enabled: false
      },
      min: 0.5, //<- added this
      max: 10.5
    },
    yAxis: {
      gridLineWidth: 0,
      minorGridLineWidth: 0,
      title: {
        text: ''
      },
      labels: {
        enabled: false
      },

    },
    tooltip: {
      valueSuffix: ' Kr.'
    },
    legend: {
      layout: 'vertical',
      align: 'right',
      verticalAlign: 'middle',
      borderWidth: 0
    },
    credits: {
      enabled: false
    },
    series: [{
      showInLegend: false,
      name: 'Profit',
      data: [0.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6],
      color: '#cc0000',

    }]
  });
});
.t-box {
  background-color: #fff;
  border: 1px solid #cccccc;
  float: left;
  width: 100%;
  height: auto;
}
.chart-box {
  width: 100%;
  height: 300px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div class="t-box">
  <div class="chart-box">

    <div id="chart-container" style="min-width: 310px; height: 100%; margin: 0 auto"></div>

  </div>
</div>

相关问题