highcharts中放aqi及6要素,再加上气象5要素的图

var chart = Highcharts.chart(‘container‘, {
    chart: {
        zoomType: ‘xy‘
    },
    title: {
        text: ‘东京月平均天气数据‘
    },
    subtitle: {
        text: ‘数据来源: WorldClimate.com‘
    },
    xAxis: [{
        categories: [
            ‘一月‘, ‘二月‘, ‘三月‘, ‘四月‘, ‘五月‘, ‘六月‘,‘七月‘, ‘八月‘, ‘九月‘, ‘十月‘, ‘十一月‘, ‘十二月‘
        ],
        crosshair: true,
        offset: 40
    }],
    yAxis: [{ // Primary yAxis
        labels: {
            format: ‘{value}°C‘,
            style: {
                color: Highcharts.getOptions().colors[2]
            }
        },
        title: {
            text: ‘温度‘,
            style: {
                color: Highcharts.getOptions().colors[2]
            }
        },
        opposite: true
    }, { // Secondary yAxis
        gridLineWidth: 0,
        title: {
            text: ‘降雨量‘,
            style: {
                color: Highcharts.getOptions().colors[0]
            }
        },
        labels: {
            format: ‘{value} mm‘,
            style: {
                color: Highcharts.getOptions().colors[0]
            }
        },
        opposite: true
    }, { // Tertiary yAxis
        gridLineWidth: 0,
        title: {
            text: ‘海平面气压‘,
            style: {
                color: Highcharts.getOptions().colors[1]
            }
        },
        labels: {
            format: ‘{value} mb‘,
            style: {
                color: Highcharts.getOptions().colors[1]
            }
        },
        opposite: true
    }, {
        title: {
            text: ‘污染物浓度 (mm)‘
        }
    }],
    tooltip: {
        shared: true
    },
    series: [{
        name: ‘降雨量‘,
        type: ‘spline‘,
        yAxis: 1,
        data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
        tooltip: {
            valueSuffix: ‘ mm‘
        }
    }, {
        name: ‘海平面气压‘,
        type: ‘spline‘,
        yAxis: 2,
        data: [1016, 1016, 1015.9, 1015.5, 1012.3, 1009.5, 1009.6, 1010.2, 1013.1, 1016.9, 1018.2, 1016.7],
        marker: {
            enabled: false
        },
        dashStyle: ‘shortdot‘,
        tooltip: {
            valueSuffix: ‘ mb‘
        }
    }, {
        name: ‘温度‘,
        type: ‘spline‘,
        Axis: 3,
        data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6],
        tooltip: {
            valueSuffix: ‘ °C‘
        }
    },{
        name: ‘东京‘,
        Axis: 4,
        type: ‘column‘,
        data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }, {
        name: ‘纽约‘,
        Axis: 4,
        type: ‘column‘,
        data: [83.6, 78.8, 98.5, 93.4, 106.0, 84.5, 105.0, 104.3, 91.2, 83.5, 106.6, 92.3]
    }, {
        name: ‘伦敦‘,
        Axis: 4,
        type: ‘column‘,
        data: [48.9, 38.8, 39.3, 41.4, 47.0, 48.3, 59.0, 59.6, 52.4, 65.2, 59.3, 51.2]
    }, {
        name: ‘柏林‘,
        Axis: 4,
        type: ‘column‘,
        data: [42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1]
    }, {
        name: ‘aa‘,
        Axis: 4,
        type: ‘column‘,
        data: [42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1]
    },{
        name: ‘bb‘,
        Axis: 4,
        type: ‘column‘,
        data: [42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1]
    },{
        name: ‘cc‘,
        Axis: 4,
        type: ‘column‘,
        data: [42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1]
    },{
        type: ‘windbarb‘,
        data: [
            [9.8, 177.9],
            [10.1, 177.2],
            [11.3, 179.7],
            [10.9, 175.5],
            [9.3, 159.9],
            [8.8, 159.6],
            [7.8, 162.6],
            [5.6, 186.2],
            [6.8, 146.0],
            [6.4, 139.9],
            [3.1, 180.2],
            [4.3, 177.6]
        ],
        name: ‘Wind‘,
        color: Highcharts.getOptions().colors[1],
        showInLegend: true,
        tooltip: {
            valueSuffix: ‘ m/s‘
        }
    }]
});

引入js

highcharts.js
exporting.js
windbarb.js
highcharts-zh_CN.js

原文地址:https://www.cnblogs.com/wangyang108/p/10311198.html

时间: 2024-10-21 10:02:48

highcharts中放aqi及6要素,再加上气象5要素的图的相关文章

在10万以内判断,一个整数加上100后是一个完全平方数,再加上168又是一个完全平方数,求该数

题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少? 程序分析:在10万以内判断,先将该数加上100后再开方,再将该数加上268后再开方,如果开方后 的结果满足如下条件,即是结果. 程序源代码: #include<stdio.h> #include<math.h> int main() { long int i, x, y; for (i = 1; i<100000; i++) { x = sqrt(i + 100); y = sq

38.一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?

//从这个小题可以学习到完全平方数的判断 //1.先判断出题目需要一个循环来尝试不同的数,for循环较为适合 //2.题目的关键是如何表示完全平方数,运用到sqrt()函数,通过sqrt*sqrt间接的达到完全平方的要求 ?#include<iostream> #include<cmath> using namespace std; int main() { int temp1,temp2; for(int i=1;i<=10000;i++) { temp1=sqrt(i+1

一个整数,它加上100 后是一个完全平方数,再加上168 又是一个完全平方数, 请问该数是多少?

""" 一个整数,它加上100 后是一个完全平方数,再加上168 又是一个完全平方数, 请问该数是多少? """ # x*x =100+n # y*y =100+168+n res = [] for i in range(10, 100): res.append(i * i) for n in range(len(res)): a = res[n] -100 for x in range(len(res)): b = res[x] -268 if

一个整数,它加上100后是一个完全平方数, 再加上168又是一个完全平方数,请问该数是多少?

题目:一个整数,它加上100后是一个完全平方数, 再加上168又是一个完全平方数,请问该数是多少? 程序分析:在10万以内判断,先将该数加上100后再开方, 再将该数加上268后再开方,如果开方后的结果满足如下条件, 即是结果.请看具体分析: public class 第十三题完全平方数 { public static void main(String[] args) { for(int i=0; i<=100000; i++) { if(Math.sqrt(i+100) % 1==0 &&

一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?

程序分析:在10万以内判断,先将该数加上100后再开方,再将该数加上268后再开方,如果开方后的结果满足条件,即是结果 #include<stdio.h> #include<math.h> int main() {       long int i,x,y;       for(i=1;i<=100000;i++)       {             x=sqrt(i+100);             y=sqrt(i+268);             if(x*x=

Engine中如何实现先居中显示要素再闪烁

[解决办法]:需要在要素居中显示之后.闪烁之前执行IScreenDisplay.UpdateWindow强制全刷,如: //居中显示要素 IActiveView actView = axMapControl1.ActiveView; IEnvelope envelpe = actView.Extent; envelpe.CenterAt(pt); actView.Extent = envelpe; actView.Refresh(); //加入强制刷新,保证刷完后再执行其他语句 actView.

CentOS常用命令小结--以前网上乱找的小结,再加上自己以前乱记录的一些东西

查看软件日志信息: sudo cat /var/log/messages | grep network whereis  查询软件安装位置 根据用户来kill pkill –u xxx 卸载单个软件包,不卸载它的相关程序包 rpm –e xxx --nodeps 可以暂时定住屏幕: ctrl+s是一个古老的shell控制键,再输入ctrl+q就可以恢复了. 查找软件的安装位置 sudo rpm –qal|grep xxx CentOS 大部分的配置文件存在/etc CentOS 查找文件较好的方

多播委托和匿名方法再加上Lambda表达式

多播委托就是好几个方法全都委托给一个委托变量 代码: 1 namespace 委托 2 { 3 class Program 4 { 5 static void math1() 6 { 7 Console.WriteLine("这是第一个方法"); 8 } 9 10 static void math2() 11 { 12 Console.WriteLine("这是第二个方法"); 13 } 14 15 static void Main(string[] args) 1

[改变自己wordpress.2]至wordpress再加上简单的debug sql调试.

或者说,同事. 需要帮助她打印出来sql 调试输出到页面sql 在这里,我们使用插件或一个的方式来启动配置文件wordpress的debug 在插件文件夹 wordpress/wp-content/plugins/ 新建一个文件叫bt_debug_sql.php <?php /* Plugin Name:    Bt Debug Sql. Plugin URI:     http://www.btroot.com Description:    Show the sql at the front