-1

高聊

可以去除突出显示的“绿色”部分吗?

代码:

chart = new Highcharts.StockChart({
    chart: {
        renderTo: renderTo,

    },
    title: {
        text: 'test - ' + title
    },
    zoomType: false,
    subtitle: {
     text: 'some text'
    },
    rangeSelector: {
        selected: 4
    },

    yAxis: {
        labels: {
            formatter: function() {
                return (this.value / 1000000) + "mil";
            }
        },
        plotLines: [{
            value: 0,
            width: 2,
            color: 'silver'
        }]
    },

  credits: {
      enabled:false
  },


        plotOptions: {
        series: {

            marker : {
                enabled : true,
                radius : 3
            }
        }

    },

    },

    series: seriesOptions
});
4

2 回答 2

2

文档是你的朋友。

Highstock 演示库 - 禁用导航器
http://www.highcharts.com/stock/demo/navigator-disabled

必要代码:

navigator : {
    enabled : false
},

工作示例:http: //jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/stock/demo/navigator-disabled/

于 2013-02-08T13:44:44.737 回答
-1

错误...又快又脏

<div id="highchart">
highchart code here
</div>
<div style="background:white;display:block;position:relative;width:400px;margin-top:-150px;">
the rest of your site/content here
</div>

在你提供的信息有限的情况下,这就是我能想到的。

于 2013-02-08T13:41:43.963 回答