删除border和content highcharts之间的工具提示空间

时间:2015-09-30 08:34:22

标签: graph highcharts report

我正在使用高图来表示图形,问题是,highcharts在边框和工具提示的内容之间产生空间,并且在该生成的空间之间可以看到饼图的标签。 任何人都可以解决我的问题。

请查看以下示例。

$(function () {
    var chart;
    $(document).ready(function () {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'graf1',
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },

            title: {
                margin: 40,
                text: 'Podíl všech potřeb'
            },
            tooltip: {
                borderWidth: 1,
                backgroundColor: "rgba(255,255,255,0)",
                borderRadius: 0,
                shadow: false,
                useHTML: true,
                percentageDecimals: 2,
                backgroundColor: "rgba(255,255,255,1)",
                formatter: function () {
                    return '<div class="tooltop">'+this.point.name + '<br />' + '<b>' + Highcharts.numberFormat(this.y).replace(",", " ") + ' Kč [' + Highcharts.numberFormat(this.percentage, 2) + '%]</b></div>';
                }
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        zIndex: 1,
                        enabled: true,
                        color: '#000000',
                        connectorWidth: 2,
                        useHTML: true,
                        formatter: function () {
                            return '<span style="color:' + this.point.color + '"><b>' + this.point.name + '</b></span>';
                        }
                    }
                }
            },
            series: [{
                type: 'pie',
                name: 'Potřeba',
                data: [
                    ['Firefox', 45.0],
                    ['IE', 26.8], {
                        name: 'Chrome',
                        y: 12.8,
                        sliced: true,
                        selected: true
                    }, ['Safari', 8.5],
                    ['Opera', 6.2],
                    ['Others', 0.7]
                ]
            }]
        });
    });
});
.label {
 z-index: 1!important;
}

.highcharts-tooltip span {
    background-color:white;
    border:1px solid green;
    opacity:1;
    z-index:9999!important;
}

.tooltip {
    padding:5px;
}
<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>
<div id="graf1" style="width: 400px; height: 250px; float:left"></div>

订单和内容高级图表之间的工具提示空间

2 个答案:

答案 0 :(得分:3)

SVG工具提示元素可以通过以下方式隐藏:

        tooltip: {
            borderWidth: 0,
            backgroundColor: "rgba(255,255,255,0)",
            shadow: false,

示例:http://jsfiddle.net/x8Lq0yr9/1/

这将消除边框和HTML内容之间的空间。

答案 1 :(得分:0)

你正在使用div class =“tooltop”,因为tooltop类无处可去。此外,.highcharts-tooltip用于两个地方的highcharts。一个在datalables,第二个在tiiptip。 除非你想要特定的边框颜色,否则你可以从代码和工具提示中删除那个css类。

 .tooltipSpan {    
opacity:1;
z-index:9999!important;
 width:100%;
} 

请参阅此Fiddle