高图中的最小,最大阈值

时间:2011-12-10 08:11:00

标签: highcharts

@Hightcharts股票 我怎么能有两个门槛? for this,max in this graph http://jsfiddle.net/CYJAk/16/

作为一个例子,这里只有一个阈值集 http://jsfiddle.net/gh/get/jquery/1.6/highslide-software/highcharts.com/tree/master/samples/stock/demo/area/

而不是highcharts中的阈值选项,有什么方法可以显示红点/点 它们超出最小值:最大范围?

4 个答案:

答案 0 :(得分:6)

解决此问题的更好方法是在图表上添加两条绘图线 允许的最小值和最大值。

假设您想将此应用于yAxis并设置最小值100和最多500,您可以这样:

var min = 100;
var max = 500;

yAxis: {

                min: min - 100,
                max: max + 100,
                plotLines: [{
                    id: 'limit-min',
                    color: '#FF0000',
                    dashStyle: 'ShortDash',
                    width: 2,
                    value: min,
                    zIndex: 0
                }, {
                    id: 'limit-max',
                    color: '#FF0000',
                    dashStyle: 'ShortDash',
                    width: 2,
                    value: max,
                    zIndex: 0
                }]
            }

在最大值和最小值上加100和减100的原因是因为我们希望图表线在图表上可见。

希望有所帮助。

答案 1 :(得分:0)

为什么不在包含正常范围的系列后面(或上方)渲染第二个波段。然后你可以很容易地看到哪些点落在该范围之外。

答案 2 :(得分:0)

根据答案,我创建了一个快速代码示例。我想如果你有最小的红线,你可以清楚看到哪些点低于你允许的最小值。

完整代码:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>How to add min and max thresholds in Highcharts</title>

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
        <script type="text/javascript">
$(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'line',
                marginRight: 130,
                marginBottom: 25
            },
            title: {
                text: 'Sales By Month',
            },
            subtitle: {
                text: 'Metrics',
            },
            xAxis: {
                categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
            },
            yAxis: {
                title: {
                    text: 'Revenue'
                },
                plotLines: [{

                color: '#FF0000',
                dashStyle: 'ShortDash',
                width: 2,
                value: 22,
                zIndex: 0,
                label : {
                    text : 'Goal'
                }
            }, {
                color: '#008000',
                dashStyle: 'ShortDash',
                width: 2,
                value: 10,
                zIndex: 0,
                label : {
                    text : 'Loss'
                }
            }]
            },
            tooltip: {
                formatter: function() {
                        return '<b>'+ this.series.name +'</b><br/>'+
                        this.x +': $'+ this.y;
                }
            },
            legend: {
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'top',
                x: -10,
                y: 100,
                borderWidth: 0
            },
            series: [{
                name: 'Revenue',
                data: [21000, 24000, 27500, 33000, 29000, 26000, 19000, 21000, 25000, 29000, 23000, 18000]
            }]
        });
    });

});
        </script>
    </head>
    <body>
<script src="js/highcharts.js"></script>
<script src="js/modules/exporting.js"></script>

<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>

    </body>
</html>

编辑小提琴here的工作演示。它可能对你有帮助。

答案 3 :(得分:-1)

根据答案,我创建了一个快速代码示例。我想如果你有最小的红线,你可以清楚看到哪些点低于你允许的最小值。

完整代码:

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>How to add min and max thresholds in Highcharts</title>

        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
        <script type="text/javascript">
$(function () {
    var chart;
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'line',
                marginRight: 130,
                marginBottom: 25
            },
            title: {
                text: 'Sales By Month',
            },
            subtitle: {
                text: 'Metrics',
            },
            xAxis: {
                categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
                    'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
            },
            yAxis: {
                title: {
                    text: 'Revenue'
                },
                plotLines: [{
                    id: 'limit-min',
                    color: '#FF0000',
                    dashStyle: 'ShortDash',
                    width: 2,
                    value: 22000,
                    zIndex: 0,
                    label : {
                        text : 'Last Year\'s Minimum Revenue'
                    }
                }, {
                    id: 'limit-max',
                    color: '#008000',
                    dashStyle: 'ShortDash',
                    width: 2,
                    value: 32000,
                    zIndex: 0,
                    label : {
                        text : 'Last Year\'s Maximum Revenue'
                    }
                }]
            },
            tooltip: {
                formatter: function() {
                        return '<b>'+ this.series.name +'</b><br/>'+
                        this.x +': $'+ this.y;
                }
            },
            legend: {
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'top',
                x: -10,
                y: 100,
                borderWidth: 0
            },
            series: [{
                name: 'Revenue',
                data: [21000, 24000, 27500, 33000, 29000, 26000, 19000, 21000, 25000, 29000, 23000, 18000]
            }]
        });
    });

});
        </script>
    </head>
    <body>
<script src="js/highcharts.js"></script>
<script src="js/modules/exporting.js"></script>

<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>

    </body>
</html>

工作演示here