| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | from highcharts import Highchart  chart = Highchart()      #name: 'Hestavollane', data01 = [4.3, 5.1, 4.3, 5.2, 5.4, 4.7, 3.5, 4.1, 5.6, 7.4, 6.9, 7.1,           7.9, 7.9, 7.5, 6.7, 7.7, 7.7, 7.4, 7.0, 7.1, 5.8, 5.9, 7.4,           8.2, 8.5, 9.4, 8.1, 10.9, 10.4, 10.9, 12.4, 12.1, 9.5, 7.5,          7.1, 7.5, 8.1, 6.8, 3.4, 2.1, 1.9, 2.8, 2.9, 1.3, 4.4, 4.2,          3.0, 3.0]   #name: 'Voll', data02 = [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.3, 0.0,           0.0, 0.4, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,           0.0, 0.6, 1.2, 1.7, 0.7, 2.9, 4.1, 2.6, 3.7, 3.9, 1.7, 2.3,           3.0, 3.3, 4.8, 5.0, 4.8, 5.0, 3.2, 2.0, 0.9, 0.4, 0.3, 0.5, 0.4]   chart.add_data_set(data01,'spline',name='Hestavollane') chart.add_data_set(data02, 'spline', name='Voll') options = {     "title": {        "text": '风速变化趋势图'              },     "subtitle": {         "text": '2009年10月6日和7日两地风速情况'         },    "xAxis": {       "type": 'datetime',       "labels": {       "overflow": 'justify'           }         },    "yAxis": {       "title": {         "text": '风 速 (m/s)'           },   "min": 0,   "minorGridLineWidth": 0,   "gridLineWidth": 0,   "alternateGridColor": None,   "plotBands": [{ #// Light air    "from": 0.3,    "to": 1.5,    "color": 'rgba(68, 170, 213, 0.1)',    "label": {     "text": '轻空气',     "style": {      "color": '#606060'     }    }   }, { #// Light breeze    "from": 1.5,    "to": 3.3,    "color": 'rgba(0, 0, 0, 0)',    "label": {     "text": '微风',     "style": {      "color": '#606060'     }    }   }, { #// Gentle breeze    "from": 3.3,    "to": 5.5,    "color": 'rgba(68, 170, 213, 0.1)',    "label": {     "text": '柔和风',     "style": {      "color": '#606060'     }    }   }, { #// Moderate breeze    "from": 5.5,    "to": 8,    "color": 'rgba(0, 0, 0, 0)',    "label": {     "text": '温和风',     "style": {      "color": '#606060'     }    }   }, { #// Fresh breeze    "from": 8,    "to": 11,    "color": 'rgba(68, 170, 213, 0.1)',    "label": {     "text": '清新风',     "style": {      "color": '#606060'     }    }   }, { #// Strong breeze    "from": 11,    "to": 14,    "color": 'rgba(0, 0, 0, 0)',    "label": {     "text": '强风',     "style": {      "color": '#606060'     }    }   }, { #// High wind    "from": 14,    "to": 15,    "color": 'rgba(68, 170, 213, 0.1)',    "label": {     "text": '狂风',     "style": {      "color": '#606060'     }    }   }]  },  "tooltip": {   "valueSuffix": ' m/s'  },  "plotOptions": {   "spline": {    "lineWidth": 4,    "states": {     "hover": {      "lineWidth": 5     }    },    "marker": {     "enabled": False    },    "pointInterval": 3600000, #// one hour        }  }  }   chart.set_dict_options(options) chart |