8-Highcharts曲線圖之對數直線圖

複製代碼
<!DOCTYPE> <html lang='en'> <head> <title>8-Highcharts曲線圖之對數直線圖</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <script src="../jquery-2.1.4/jquery.min.js"></script> <script src="../Highcharts-4.2.5/js/highcharts.js"></script> <script src="../Highcharts-4.2.5/js/themes/gray.js"></script><!--主題 --> <script> $(function () { $('#container').highcharts({ chart:{ //type:'line', //zoomType 取值爲 x、y、xy 中的一個,分別表示圖表能夠沿 x 軸,y軸,xy軸放大,也就是水平、豎直、平面放大。zoomType 默認值是 None,即無方法功能 //zoomType:'x', //spacingRight: 20//圖的右邊框和繪圖區之間的距離 默認是10 //type:'spline' //inverted:true //x,y軸反轉  }, /************標題***************/ //標題默認顯示在圖表的頂部,包括標題和副標題(subTitle),其中副標題是非必須的。 //主標圖  title: { //標題文字水平對齊方式有,center,left,right,默認爲center //標題文字垂直對齊方式,有top、middle、bottom可選 默認爲空【""】  text: '對數直線圖' //標題文字用text表示 //x:-20 //隱藏標題 設置標題爲null便可 //text:null //text:'<h1>Monthly Average Temperature</h1>', //useHTML:true,//是否解析html標籤,設置解析後,能夠使用例如a等html標籤 默認是false //floating:true,//是否浮動,設置浮動後,標題將不佔用圖表區位置 默認是false //style:{},//文字樣式,能夠設置文字顏色、字體、字號,注意和css有略微的不一樣,例如font-size用fontSize、font-family用fontFamily表示 //margin:80,//標題和圖表區的間隔,當有副標題時,表示標題和副標題之間的間隔 默認是15 //x: -200, //相對於水平對齊的偏移量,能夠是負數,單位是px 默認是0 //y: 20 //相對於垂直對齊的偏移量,能夠使負數,單位是px 默認是0  }, //副標題  subtitle: { //text: '個人圖表' //x: -20  }, /************座標軸***************/ //全部的圖表除了餅圖都有X軸和Y軸,默認狀況下,x軸顯示在圖表的底部,y軸顯示在左側 //(多個y軸時能夠是顯示在左右兩側),經過設置chart.inverted = true 能夠讓x,y軸顯示位置對調  xAxis: { //categories: ['2011年', '2012年', '2013年', '2014年', '2015年', '2016年'] //categories //座標軸的類型。能夠是"linear", "logarithmic", "datetime" 或者 "category"之一。 //在時間軸中,座標軸的值是以毫秒爲單位的,刻度線上顯示像整數的小時或天的適當值。 //在類別軸中,默認採用圖表數據點的名稱作分類名稱,若是定義類別名稱數組可覆蓋默認名稱。默認是: linear. //type: 'datetime'//x軸 時間類型 //maxZoom: 14 * 24 * 3600000, // fourteen days已經廢棄使用 //title: { text: null }//去除x軸標題 /* //是否逆轉軸,使得最高數最靠近原點。若是圖表倒置,x軸默認是逆轉的。 reversed:false, title:{ enabled:true, text:'速度' }, labels:{ formatter:function (){ return this.value + "Km"; } }, maxPadding: 0.05, showLastLabel: true */ //座標軸上的刻度線的單位間隔。當值爲null時,刻度線間隔是根據近似於線性的(tickPixelInterval)計算的。 //在分類軸上,一個null的刻度間隔,默認爲1,即1個類目。要注意的是,時間軸是根據毫秒來計算的,例如一天的間隔表示爲24 * 3600 * 1000。 //在對數軸上,刻度線間隔按指數冪來算,刻度線間隔爲1時,在刻度上的每一個值爲0.1, 1, 10, 100等。 //刻度間隔爲2時,在刻度上的每一個值爲0.1, 10, 1000等。 刻度間隔爲0.2時,在刻度上的值爲: 0.1, 0.2, 0.4, 0.6, 0.8, 1, 2, 4, 6, 8, 10, 20, 40等  tickInterval:1, tickLength:20,//刻度線長度,默認是10  tickColor:'red'//設置刻度線的顏色  }, yAxis: { type:'logarithmic', //次刻度線的間隔。在一個直線軸中,若是設置爲"auto",次刻度間隔計算爲刻度線間隔的五分之一。若是設置爲null,次刻度刻度線不顯示。 //在對數座標軸中,單位爲冪(指數級)。 //例如,minorTickInterval設置爲1在0.1和1,1和10,10和100之間顯示一個次級刻度,minorTickInterval設置爲0.1, //在刻度1和10,10和100之間會產生9個次級刻度,設置爲「自動」,每一個刻度在軸線上使用categories, 次級刻度線是不支持的。  minorTickInterval: 0.1 //title: { text: '風速(m/s)' },//y軸標題 //min:0,//軸的最小值。若是是null,最小值被自動計算。若是startOnTick選項是true,min的值可能會被四捨五入。 //minorGridLineWidth:0,//次級網格線的寬度 //gridLineWidth: 0,//網格線的寬度,當設置爲 0 時,即爲不顯示網格線。 默認是1 //alternateGridColor: null,//相間的網格行顏色。當設置了此屬性,網格中會隔行顯示該顏色 //plotBands在Y軸上的由數組對象定義成的區域帶 /*plotBands:[ { from:0.3, to:1.5, color:'#FDCDFA', label:{ text:'level1', style:{color:'#606060'} } }, { from:1.5, to:3.3, color:'#FFFFFF', label:{ text:'level2', style:{color:'#606060'} } }, { from:3.3, to:5.5, color:'#FDCDFA', label:{ text:'level3', style:{color:'#606060'} } }, { from:5.5, to:8, color:'#FFFFFF', label:{ text:'level4', style:{color:'#606060'} } }, { from:8, to:11, color:'#FDCDFA', label:{ text:'level5', style:{color:'#606060'} } }, { from:11, to:14, color:'#FFFFFF', label:{ text:'level6', style:{color:'#606060'} } }, { from:14, to:15, color:'#FDCDFA', label:{ text:'level7', style:{color:'#606060'} } } ] */ //plotLines: [{ value: 0, width: 1, color: '#808080' }] , /* //標示線 plotLines:[{ color:'red', //線的顏色,定義爲紅色 dashStyle:'solid', //默認值,這裏定義爲實線 value:500, //定義在那個值上顯示標示線,這裏是在x軸上刻度爲3的值處垂直化一條線 width:2 //標示線的寬度,2px }], labels:{ formatter:function(){ return this.value+'°'; } } //lineWidth: 2 */ }, /*************版權信息**********************/ credits:{ enabled:false // 禁用版權信息 }, /*************數據提示框**********************/ //tooltip: { valueSuffix: '°C' }, tooltip: { //valueSuffix:' m/s'//一串字符被後置在每一個Y軸的值以後。可重寫在每一個系列的提示框選項的對象上 //backgroundColor: '#FCFFC5', // 背景顏色 //borderColor: 'black', // 邊框顏色 //borderRadius: 10, // 邊框圓角 //borderWidth: 3, // 邊框寬度 //shadow: true, // 是否顯示陰影 //animation: true , // 是否啓用動畫效果 //style: { // 文字內容相關樣式 // color: "#ff0000", // fontSize: "12px", // fontWeight: "blod", // fontFamily: "Courir new" //} //enabled:false, //禁用提示框 //格式化函數 this.x表示當前點X值,this.series表示當前數據列,this.y表示當前y值 //formatter:function(){ // return this.series.name + " " + this.x + " " + this.y; //}//自定義提示 //十字準線。十字準線能夠被定義爲一個Boolean 值,一組Boolean 值 或 json對象。 //爲 Boolean時: // 若是十字準線選項爲true,一條單一的與X軸有關的十字準線將被顯示出來。 //爲一組Boolean時: // 在一組Boolean值中,第一個值表示是否與X軸有準線鏈接,第二個值表示是否與Y軸有準線鏈接。使用[true, true]能夠展示完整的十字準線。 //爲json 對象時: // 對象中包含更詳細的屬性設置,屬性包括 width, color, dashStyle和zIndex,分別表明線條寬度、顏色、演示 及 顯示層次 // crosshairs: true,//爲x的值顯示十字準心 //crosshairs: [true, true],//二維十字準心 //crosshairs: {//x軸的點線樣式十字準心 // width: 2, // color: 'gray', // dashStyle: 'shortdot' //}, /* crosshairs: [{//自定義十字準心 width: 3, color: 'green' }, { width: 3, color: 'green' }], */ //當提示框被共享時,整個繪圖區都將捕捉鼠標指針的移動。 //提示框文本顯示有序數據(不包括餅圖,散點圖和標誌圖(flag)等)的系列類型將被顯示在單一的氣泡中。推薦在單一系列的圖表和平板/手機優化的圖表中使用。 //shared: true //headerFormat: '<b>{series.name}</b><br/>', //pointFormat: '{point.x} km: {point.y}°C' headerFormat: '<b>{series.name}</b><br />', pointFormat: 'x = {point.x}, y = {point.y}' }, /************圖例***************/ //省略圖例會在下面顯示 //也能夠設置 設置在下方 legend: { //layout: 'horizontal',//horizontal,vertical //align: 'center', //verticalAlign: 'bottom', //borderWidth: 0 //enabled:false//關閉圖例 }, /* //顯示在靠右居中 legend: { layout: 'vertical',//horizontal,vertical align: 'right', verticalAlign: 'middle', borderWidth: 0 }, */ //plotOptions用於設置圖表中的數據點相關屬性。 plotOptions: { /* spline:{ lineWidth:4, //設置鼠標放上去的狀態 states: { hover: { lineWidth: 4 } }, marker:{ enable:false //radius: 4, //lineColor: '#FEDFCD', //lineWidth: 1 }, pointInterval: 3600000, // one hour pointStart: Date.UTC(2016, 7, 9, 0, 0, 0) } */ /* line: { //animation:true,//是否在顯示圖表的時候使用動畫 cursor:'pointer',//鼠標移到圖表上時手勢的樣式 dataLabels: { enabled: true//是否在數據點上直接顯示數據 設爲true表示是 }, enableMouseTracking: false //鼠標移到圖表上時是否顯示提示框 } */ /* area: { //Fill color or gradient for the area. When null, the series' color is used with the series' fillOpacity //爲區域填充顏色或者梯度,若是沒有區域的話,數據列的顏色將會使用fillOpacity填充透明 fillColor: { linearGradient: { x1: 0, y1: 0, x2: 0, y2: 1}, //設置顏色漸變 stops: [ [0, Highcharts.getOptions().colors[0]], [1, Highcharts.Color(Highcharts.getOptions().colors[0]).setOpacity(0).get('rgba')] ] }, lineWidth: 1,//設置線寬度 默認是: 2. //標記 marker: { enabled: false //啓用或禁用點標記 }, shadow: false,//設置禁用圖形線的下拉陰影 //設置鼠標放上去的狀態 states: { hover: { lineWidth: 1 } }, //在Y軸的值做爲該區域的基礎上,用於區分上述和低於閾值的值。若是爲空,該區域的行爲像一個線系列與填充之間的圖形和Y軸最小。 threshold: null } */ }, /*****************數據列******************/ series: [ { data: [1, 2, 4, 8, 16, 32, 64, 128, 256, 512], pointStart: 1 } ] /* series: [{ name: 'time1', data: [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: 'time2', data: [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] }], */ /* series: [{ name:'中國', data:[ [10,20],[26,-25],[88,56],[-80,10],[29,-76],[-16,18] ] //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]] }] */ /* series: [ { name: 'A省',//圖例名稱 data: [200, 230, 190, 500, 600, 689]//數據 }, { name: 'B省', data: [400, 700, 690, 590, 700, 780] }, { name: 'C省', data: [355, 230, 489, 609, 329, 800] }, { name: 'D省', data: [190, 234, 343, 444, 567, 787] }, { name: 'E省', data: [122, 345, 556, 778, 568, 888] } ] */ /* series: [{ type: 'area', name: 'test', pointInterval: 24 * 3600 * 1000, pointStart: Date.UTC(2006, 0, 01), data: [ 0.8446, 0.8445, 0.8444, 0.8451, 0.8418, 0.8264, 0.8258, 0.8232, 0.8233, 0.8258, 0.8283, 0.8278, 0.8256, 0.8292, 0.8239, 0.8239, 0.8245, 0.8265, 0.8261, 0.8269, 0.8273, 0.8244, 0.8244, 0.8172, 0.8139, 0.8146, 0.8164, 0.82, 0.8269, 0.8269, 0.8269, 0.8258, 0.8247, 0.8286, 0.8289, 0.8316, 0.832, 0.8333, 0.8352, 0.8357, 0.8355, 0.8354, 0.8403, 0.8403, 0.8406, 0.8403, 0.8396, 0.8418, 0.8409, 0.8384, 0.8386, 0.8372, 0.839, 0.84, 0.8389, 0.84, 0.8423, 0.8423, 0.8435, 0.8422, 0.838, 0.8373, 0.8316, 0.8303, 0.8303, 0.8302, 0.8369, 0.84, 0.8385, 0.84, 0.8401, 0.8402, 0.8381, 0.8351, 0.8314, 0.8273, 0.8213, 0.8207, 0.8207, 0.8215, 0.8242, 0.8273, 0.8301, 0.8346, 0.8312, 0.8312, 0.8312, 0.8306, 0.8327, 0.8282, 0.824, 0.8255, 0.8256, 0.8273, 0.8209, 0.8151, 0.8149, 0.8213, 0.8273, 0.8273, 0.8261, 0.8252, 0.824, 0.8262, 0.8258, 0.8261, 0.826, 0.8199, 0.8153, 0.8097, 0.8101, 0.8119, 0.8107, 0.8105, 0.8084, 0.8069, 0.8047, 0.8023, 0.7965, 0.7919, 0.7921, 0.7922, 0.7934, 0.7918, 0.7915, 0.787, 0.7861, 0.7861, 0.7853, 0.7867, 0.7827, 0.7834, 0.7766, 0.7751, 0.7739, 0.7767, 0.7802, 0.7788, 0.7828, 0.7816, 0.7829, 0.783, 0.7829, 0.7781, 0.7811, 0.7831, 0.7826, 0.7855, 0.7855, 0.7845, 0.7798, 0.7777, 0.7822, 0.7785, 0.7744, 0.7743, 0.7726, 0.7766, 0.7806, 0.785, 0.7907, 0.7912, 0.7913, 0.7931, 0.7952, 0.7951, 0.7928, 0.791, 0.7913, 0.7912, 0.7941, 0.7953, 0.7921, 0.7919, 0.7968, 0.7999, 0.7999, 0.7974, 0.7942, 0.796, 0.7969, 0.7862, 0.7821, 0.7821, 0.7821, 0.7811, 0.7833, 0.7849, 0.7819, 0.7809, 0.7809, 0.7827, 0.7848, 0.785, 0.7873, 0.7894, 0.7907, 0.7909, 0.7947, 0.7987, 0.799, 0.7927, 0.79, 0.7878, 0.7878, 0.7907, 0.7922, 0.7937, 0.786, 0.787, 0.7838, 0.7838, 0.7837, 0.7836, 0.7806, 0.7825, 0.7798, 0.777, 0.777, 0.7772, 0.7793, 0.7788, 0.7785, 0.7832, 0.7865, 0.7865, 0.7853, 0.7847, 0.7809, 0.778, 0.7799, 0.78, 0.7801, 0.7765, 0.7785, 0.7811, 0.782, 0.7835, 0.7845, 0.7844, 0.782, 0.7811, 0.7795, 0.7794, 0.7806, 0.7794, 0.7794, 0.7778, 0.7793, 0.7808, 0.7824, 0.787, 0.7894, 0.7893, 0.7882, 0.7871, 0.7882, 0.7871, 0.7878, 0.79, 0.7901, 0.7898, 0.7879, 0.7886, 0.7858, 0.7814, 0.7825, 0.7826, 0.7826, 0.786, 0.7878, 0.7868, 0.7883, 0.7893, 0.7892, 0.7876, 0.785, 0.787, 0.7873, 0.7901, 0.7936, 0.7939, 0.7938, 0.7956, 0.7975, 0.7978, 0.7972, 0.7995, 0.7995, 0.7994, 0.7976, 0.7977, 0.796, 0.7922, 0.7928, 0.7929, 0.7948, 0.797, 0.7953, 0.7907, 0.7872, 0.7852, 0.7852, 0.786, 0.7862, 0.7836, 0.7837, 0.784, 0.7867, 0.7867, 0.7869, 0.7837, 0.7827, 0.7825, 0.7779, 0.7791, 0.779, 0.7787, 0.78, 0.7807, 0.7803, 0.7817, 0.7799, 0.7799, 0.7795, 0.7801, 0.7765, 0.7725, 0.7683, 0.7641, 0.7639, 0.7616, 0.7608, 0.759, 0.7582, 0.7539, 0.75, 0.75, 0.7507, 0.7505, 0.7516, 0.7522, 0.7531, 0.7577, 0.7577, 0.7582, 0.755, 0.7542, 0.7576, 0.7616, 0.7648, 0.7648, 0.7641, 0.7614, 0.757, 0.7587, 0.7588, 0.762, 0.762, 0.7617, 0.7618, 0.7615, 0.7612, 0.7596, 0.758, 0.758, 0.758, 0.7547, 0.7549, 0.7613, 0.7655, 0.7693, 0.7694, 0.7688, 0.7678, 0.7708, 0.7727, 0.7749, 0.7741, 0.7741, 0.7732, 0.7727, 0.7737, 0.7724, 0.7712, 0.772, 0.7721, 0.7717, 0.7704, 0.769, 0.7711, 0.774, 0.7745, 0.7745, 0.774, 0.7716, 0.7713, 0.7678, 0.7688, 0.7718, 0.7718, 0.7728, 0.7729, 0.7698, 0.7685, 0.7681, 0.769, 0.769, 0.7698, 0.7699, 0.7651, 0.7613, 0.7616, 0.7614, 0.7614, 0.7607, 0.7602, 0.7611, 0.7622, 0.7615, 0.7598, 0.7598, 0.7592, 0.7573, 0.7566, 0.7567, 0.7591, 0.7582, 0.7585, 0.7613, 0.7631, 0.7615, 0.76, 0.7613, 0.7627, 0.7627, 0.7608, 0.7583, 0.7575, 0.7562, 0.752, 0.7512, 0.7512, 0.7517, 0.752, 0.7511, 0.748, 0.7509, 0.7531, 0.7531, 0.7527, 0.7498, 0.7493, 0.7504, 0.75, 0.7491, 0.7491, 0.7485, 0.7484, 0.7492, 0.7471, 0.7459, 0.7477, 0.7477, 0.7483, 0.7458, 0.7448, 0.743, 0.7399, 0.7395, 0.7395, 0.7378, 0.7382, 0.7362, 0.7355, 0.7348, 0.7361, 0.7361, 0.7365, 0.7362, 0.7331, 0.7339, 0.7344, 0.7327, 0.7327, 0.7336, 0.7333, 0.7359, 0.7359, 0.7372, 0.736, 0.736, 0.735, 0.7365, 0.7384, 0.7395, 0.7413, 0.7397, 0.7396, 0.7385, 0.7378, 0.7366, 0.74, 0.7411, 0.7406, 0.7405, 0.7414, 0.7431, 0.7431, 0.7438, 0.7443, 0.7443, 0.7443, 0.7434, 0.7429, 0.7442, 0.744, 0.7439, 0.7437, 0.7437, 0.7429, 0.7403, 0.7399, 0.7418, 0.7468, 0.748, 0.748, 0.749, 0.7494, 0.7522, 0.7515, 0.7502, 0.7472, 0.7472, 0.7462, 0.7455, 0.7449, 0.7467, 0.7458, 0.7427, 0.7427, 0.743, 0.7429, 0.744, 0.743, 0.7422, 0.7388, 0.7388, 0.7369, 0.7345, 0.7345, 0.7345, 0.7352, 0.7341, 0.7341, 0.734, 0.7324, 0.7272, 0.7264, 0.7255, 0.7258, 0.7258, 0.7256, 0.7257, 0.7247, 0.7243, 0.7244, 0.7235, 0.7235, 0.7235, 0.7235, 0.7262, 0.7288, 0.7301, 0.7337, 0.7337, 0.7324, 0.7297, 0.7317, 0.7315, 0.7288, 0.7263, 0.7263, 0.7242, 0.7253, 0.7264, 0.727, 0.7312, 0.7305, 0.7305, 0.7318, 0.7358, 0.7409, 0.7454, 0.7437, 0.7424, 0.7424, 0.7415, 0.7419, 0.7414, 0.7377, 0.7355, 0.7315, 0.7315, 0.732, 0.7332, 0.7346, 0.7328, 0.7323, 0.734, 0.734, 0.7336, 0.7351, 0.7346, 0.7321, 0.7294, 0.7266, 0.7266, 0.7254, 0.7242, 0.7213, 0.7197, 0.7209, 0.721, 0.721, 0.721, 0.7209, 0.7159, 0.7133, 0.7105, 0.7099, 0.7099, 0.7093, 0.7093, 0.7076, 0.707, 0.7049, 0.7012, 0.7011, 0.7019, 0.7046, 0.7063, 0.7089, 0.7077, 0.7077, 0.7077, 0.7091, 0.7118, 0.7079, 0.7053, 0.705, 0.7055, 0.7055, 0.7045, 0.7051, 0.7051, 0.7017, 0.7, 0.6995, 0.6994, 0.7014, 0.7036, 0.7021, 0.7002, 0.6967, 0.695, 0.695, 0.6939, 0.694, 0.6922, 0.6919, 0.6914, 0.6894, 0.6891, 0.6904, 0.689, 0.6834, 0.6823, 0.6807, 0.6815, 0.6815, 0.6847, 0.6859, 0.6822, 0.6827, 0.6837, 0.6823, 0.6822, 0.6822, 0.6792, 0.6746, 0.6735, 0.6731, 0.6742, 0.6744, 0.6739, 0.6731, 0.6761, 0.6761, 0.6785, 0.6818, 0.6836, 0.6823, 0.6805, 0.6793, 0.6849, 0.6833, 0.6825, 0.6825, 0.6816, 0.6799, 0.6813, 0.6809, 0.6868, 0.6933, 0.6933, 0.6945, 0.6944, 0.6946, 0.6964, 0.6965, 0.6956, 0.6956, 0.695, 0.6948, 0.6928, 0.6887, 0.6824, 0.6794, 0.6794, 0.6803, 0.6855, 0.6824, 0.6791, 0.6783, 0.6785, 0.6785, 0.6797, 0.68, 0.6803, 0.6805, 0.676, 0.677, 0.677, 0.6736, 0.6726, 0.6764, 0.6821, 0.6831, 0.6842, 0.6842, 0.6887, 0.6903, 0.6848, 0.6824, 0.6788, 0.6814, 0.6814, 0.6797, 0.6769, 0.6765, 0.6733, 0.6729, 0.6758, 0.6758, 0.675, 0.678, 0.6833, 0.6856, 0.6903, 0.6896, 0.6896, 0.6882, 0.6879, 0.6862, 0.6852, 0.6823, 0.6813, 0.6813, 0.6822, 0.6802, 0.6802, 0.6784, 0.6748, 0.6747, 0.6747, 0.6748, 0.6733, 0.665, 0.6611, 0.6583, 0.659, 0.659, 0.6581, 0.6578, 0.6574, 0.6532, 0.6502, 0.6514, 0.6514, 0.6507, 0.651, 0.6489, 0.6424, 0.6406, 0.6382, 0.6382, 0.6341, 0.6344, 0.6378, 0.6439, 0.6478, 0.6481, 0.6481, 0.6494, 0.6438, 0.6377, 0.6329, 0.6336, 0.6333, 0.6333, 0.633, 0.6371, 0.6403, 0.6396, 0.6364, 0.6356, 0.6356, 0.6368, 0.6357, 0.6354, 0.632, 0.6332, 0.6328, 0.6331, 0.6342, 0.6321, 0.6302, 0.6278, 0.6308, 0.6324, 0.6324, 0.6307, 0.6277, 0.6269, 0.6335, 0.6392, 0.64, 0.6401, 0.6396, 0.6407, 0.6423, 0.6429, 0.6472, 0.6485, 0.6486, 0.6467, 0.6444, 0.6467, 0.6509, 0.6478, 0.6461, 0.6461, 0.6468, 0.6449, 0.647, 0.6461, 0.6452, 0.6422, 0.6422, 0.6425, 0.6414, 0.6366, 0.6346, 0.635, 0.6346, 0.6346, 0.6343, 0.6346, 0.6379, 0.6416, 0.6442, 0.6431, 0.6431, 0.6435, 0.644, 0.6473, 0.6469, 0.6386, 0.6356, 0.634, 0.6346, 0.643, 0.6452, 0.6467, 0.6506, 0.6504, 0.6503, 0.6481, 0.6451, 0.645, 0.6441, 0.6414, 0.6409, 0.6409, 0.6428, 0.6431, 0.6418, 0.6371, 0.6349, 0.6333, 0.6334, 0.6338, 0.6342, 0.632, 0.6318, 0.637, 0.6368, 0.6368, 0.6383, 0.6371, 0.6371, 0.6355, 0.632, 0.6277, 0.6276, 0.6291, 0.6274, 0.6293, 0.6311, 0.631, 0.6312, 0.6312, 0.6304, 0.6294, 0.6348, 0.6378, 0.6368, 0.6368, 0.6368, 0.636, 0.637, 0.6418, 0.6411, 0.6435, 0.6427, 0.6427, 0.6419, 0.6446, 0.6468, 0.6487, 0.6594, 0.6666, 0.6666, 0.6678, 0.6712, 0.6705, 0.6718, 0.6784, 0.6811, 0.6811, 0.6794, 0.6804, 0.6781, 0.6756, 0.6735, 0.6763, 0.6762, 0.6777, 0.6815, 0.6802, 0.678, 0.6796, 0.6817, 0.6817, 0.6832, 0.6877, 0.6912, 0.6914, 0.7009, 0.7012, 0.701, 0.7005, 0.7076, 0.7087, 0.717, 0.7105, 0.7031, 0.7029, 0.7006, 0.7035, 0.7045, 0.6956, 0.6988, 0.6915, 0.6914, 0.6859, 0.6778, 0.6815, 0.6815, 0.6843, 0.6846, 0.6846, 0.6923, 0.6997, 0.7098, 0.7188, 0.7232, 0.7262, 0.7266, 0.7359, 0.7368, 0.7337, 0.7317, 0.7387, 0.7467, 0.7461, 0.7366, 0.7319, 0.7361, 0.7437, 0.7432, 0.7461, 0.7461, 0.7454, 0.7549, 0.7742, 0.7801, 0.7903, 0.7876, 0.7928, 0.7991, 0.8007, 0.7823, 0.7661, 0.785, 0.7863, 0.7862, 0.7821, 0.7858, 0.7731, 0.7779, 0.7844, 0.7866, 0.7864, 0.7788, 0.7875, 0.7971, 0.8004, 0.7857, 0.7932, 0.7938, 0.7927, 0.7918, 0.7919, 0.7989, 0.7988, 0.7949, 0.7948, 0.7882, 0.7745, 0.771, 0.775, 0.7791, 0.7882, 0.7882, 0.7899, 0.7905, 0.7889, 0.7879, 0.7855, 0.7866, 0.7865, 0.7795, 0.7758, 0.7717, 0.761, 0.7497, 0.7471, 0.7473, 0.7407, 0.7288, 0.7074, 0.6927, 0.7083, 0.7191, 0.719, 0.7153, 0.7156, 0.7158, 0.714, 0.7119, 0.7129, 0.7129, 0.7049, 0.7095 ] }] */ /* navigation: { menuItemStyle: { fontSize: '10px' } } */ }); }); </script> </head> <body> <div id="container" style="min-width:700px;height:400px"></div> </body> </html>
複製代碼
相關文章
相關標籤/搜索