溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jqplot畫折線圖

發(fā)布時(shí)間:2020-03-30 20:09:20 來源:網(wǎng)絡(luò) 閱讀:606 作者:1473348968 欄目:web開發(fā)
<html>
<head>
<title>practise and templet</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="jquery-1.4.min.js" ></script>
<!--支持ie的js-->
<script type="text/javascript" src="excanvas.js" ></script>

<script type="text/javascript" src="jquery.jqplot.js" ></script>
<script type="text/javascript" src="jqplot.cursor.js" ></script>
<script type="text/javascript" src="jqplot.dateAxisRenderer.js" ></script>
<script type="text/javascript" src="jqplot.highlighter.js" ></script>
<script type="text/javascript">
$(function(){
var line1=[['2014-01-01', 100], ['2014-1-2', 123], ['2014-1-3', 23], ['2014-1-4', 345],
      ['2014-1-5', 232], ['2014-1-6', 234], ['2014-1-7', 312], ['2014-1-8', 23],
      ['2014-1-9', 234], ['2014-1-10', 31], ['2014-1-11', 234], ['2014-1-12', 42]];
  var plot1 = $.jqplot('chart1', [line1], {
      title:'近期銷售量統(tǒng)計(jì)',
      axes:{
        xaxis:{
          renderer:$.jqplot.DateAxisRenderer,
          tickOptions:{
            // x軸刻度標(biāo)簽格式化為月日,如: May 1
            //formatString:'%b %#d'
            formatString:'%y-%m-%#d'
          } 
        },
        yaxis:{
          tickOptions:{
            // y軸刻度標(biāo)簽格式化為帶兩位小數(shù)的美元數(shù),如: $500.00
            formatString:'%.0f'
            }
        }
      },
      highlighter: {
        // 是否高亮顯示
        show: true,
        // 當(dāng)鼠標(biāo)移動(dòng)到數(shù)據(jù)點(diǎn)上時(shí),數(shù)據(jù)點(diǎn)擴(kuò)大的增量增量
        sizeAdjust: 7.5
      },
      cursor: {
        // 是否顯示光標(biāo),若為true,光標(biāo)默認(rèn)為十字
        show: false
      }
  });
 
});
</script>
</head>
<body>
<!--容器-->
<div id="chart1" ></div>
</body>
</html>

=======================

jqplot畫折線圖

jq庫在我的下載里下載

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI