如何从highcharts响应中制作饼图

问题描述 投票:3回答:2

从某些日子来看,我正在努力制作一张来自highcharts响应的饼图。我正在开发一个中型项目,有时很容易丢失概述。

我已经检查了这个:http://www.angulartutorial.net/2014/03/responsive-highchart.html但没有成功。

问题:当宽度为1920px时,高图看起来很好。当它是900px时,那么饼图(系列 - >数据)的描述在浏览器之外,人们无法读取它,而且,馅饼对我来说很小。

问题:如何避免这种行为?我想要一个更大的馅饼,并能够阅读(系列 - >数据)。

我提供以下代码:

我的HTML代码是:

<div id="container-independency" >
  <div id="independency" >
    <div>Title plot</div>
    <div style="margin-left: 2.8%; margin-top:1%; font-size: 24px;">Bla blablabla blab bl<span class="autarkie" > </span> % blabla = <strong> <span class="autarkie" >
    </span> % blablabla blablabla</strong></div>
     <div id="highcharts_container"></div> 
  </div>
</div>

CSS代码:

#container-independency{
    width: 90%;
    max-width: 1620px;
    background-color: #b8860b;
    clear: both;
    padding: 1%;
    display: none;
    box-sizing: border-box;
}

#independency{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 1%;
    background-color: #ffb6c1;
    box-sizing: border-box;
}

#highcharts_container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;

}

Highcharts:

('#highcharts_container').highcharts({ 
          chart: { 
              plotBackgroundColor: null, 
              plotBorderWidth: null, 
              plotShadow: false, 
              type: 'pie' 
          },

          title:{
           text:''
          },

          credits: { 
            enabled: false 
           },

          navigation: {
            buttonOptions: {
                enabled: false
            }
          }, 

          tooltip: { 
              pointFormat: '<b>{point.percentage:.1f}%</b>' 
          }, 
          plotOptions: { 
              pie: { 
                  allowPointSelect: true, 
                  cursor: 'pointer', 
                  dataLabels: { 
                      enabled: true, 
                      format: '<b>{point.name}</b>: {point.percentage:.2f} %', 
                      style: { 
                          color: '#58585a',
                          fontFamily: 'klavika-web, sans-serif', fontSize: '12px'          
                      } 
                  } 
              } 
          }, 
          series: [{

              name: '',    
              data: [ 
                 ['Property1aaa/Property2aaa/Property3aaaaaa', independency], 
                 ['More blablabla blablabla', 100-independency],                
              ] 
          }]    
        });//highcharts_container

更新:

Labels are hidden

css charts highcharts
2个回答
0
投票

每次图表更改大小时,都会触发图表的重绘事件。您可以在该事件中检查图表的宽度并为系列调用其他更新,因为如果您使用<br>标签将标签的文本更改为一个,那么派似乎很合适。如果您的问题更复杂,解决方案仍然类似 - 检查大小和更新图表。

更改点名称的示例:http://jsfiddle.net/j86jkfvj/114/

宽度<900px时系列更新的示例:http://jsfiddle.net/dhwzw8qg/


0
投票

这是我发现根据页面的resize事件重绘饼图的示例。我用它并运作良好:

jsfiddle.net/4mo2qf79/12

HTML:

<div class="wrapper">
    <div id="container" style="width:100%;"></div>
</div>

JS:

$(function () {
    $('#container').highcharts({
        chart: {
            plotBackgroundColor: null,
            plotBorderWidth: null,
            plotShadow: false
       },
        title: {
            text: 'Responsive Resize'
        },
        tooltip: {
            pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
        },
        plotOptions: {
            pie: {
                allowPointSelect: true,
                cursor: 'pointer',
                dataLabels: {
                    enabled: true
                }
            }
        },
        series: [{
            type: 'pie',
            name: 'Browser share',
            data: [
                ['Firefox', 45.0],
                ['IE',      26.8],
                ['Safari',  8.5],
                ['Opera',   6.2],
                ['Others',  0.7]
            ]
        }]
    });

    function redrawchart(){
        var chart = $('#container').highcharts();

        console.log('redraw');
        var w = $('#container').closest(".wrapper").width()
        // setsize will trigger the graph redraw 
        chart.setSize(       
            w,w * (3/4),false
        );
     }

    $(window).resize(redrawchart);
    redrawchart();

});
© www.soinside.com 2019 - 2024. All rights reserved.