Highcharts教程

Highcharts 带倒轴的样条图

以下是轴倒置的样条图示例。
我们已经在Highcharts 配置语法一章中看到了用于绘制图表的配置。现在,我们将讨论一个带有倒轴的样条图示例。

配置

将图表类型配置为基于样条。 chart.type 决定图表的系列类型。此处,默认值为"line"。
配置要反转的轴。当 true x 轴 为垂直且 y 轴 为水平时 – 如果图表中存在条形系列,则相同。此处,默认值为 false。

图表

var chart = {
   type: 'spline',
   inverted: true
}; 

示例

highcharts-spline-inverted.htm
<html>
   <head>
      <title>Highcharts Tutorial</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
      <script src = "https://code.highcharts.com/highcharts.js"></script>  
   </head>
   
   <body>
      <div id = "container" style = "width: 550px; height: 400px; margin: 0 auto"></div>
      <script language = "JavaScript">
         $(document).ready(function() {  
            var chart = {
               type: 'spline',
               inverted: true
            }; 
            var title = {
               text: 'Atmosphere Temperature by Altitude'   
            };
            var subtitle = {
               text: 'According to the Standard Atmosphere Model'
            };
            var xAxis = {
               reversed: false,
               title: {
                  enabled: true,
                  text: 'Altitude'
               },
               labels: {
                  formatter: function () {
                     return this.value + 'km';
                  }
               },
               maxPadding: 0.05,
               showLastLabel: true
            };
            var yAxis = {
               title: {
                  text: 'Temperature'
               },
               labels: {
                  formatter: function () {
                     return this.value + '\xB0';
                  }
               },
               lineWidth: 2
            };
            var legend = {
               enabled: false 
            };
            var tooltip = {
               headerFormat: '<b>{series.name}</b><br/>',
               pointFormat: '{point.x} km: {point.y}\xB0C'
            };
            var plotOptions = {
               spline: {
                  marker: {
                     enable: false
                  }
               }
            };
            var series = [{
               name: 'Temperature',
               data: [[0, 15], [10,-50], [20,-56.5], [30,-46.5], [40,-22.1],
                  [50,-2.5], [60,-27.7], [70,-55.7], [80,-76.5]]
            }];      
   
            var json = {};
            json.chart = chart;
            json.title = title;
            json.subtitle = subtitle;
            json.legend = legend;
            json.tooltip = tooltip;
            json.xAxis = xAxis;
            json.yAxis = yAxis;  
            json.series = series;
            json.plotOptions = plotOptions;
            $('#container').highcharts(json);
  
         });
      </script>
   </body>
   
</html>
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4