Ext.js 路徑繪圖

2022-05-20 16:01 更新

描述

這用于創(chuàng)建freepath。

語(yǔ)法

這里是添加路徑的簡(jiǎn)單語(yǔ)法。

xtype: 'draw',
type: 'path'

下面是一個(gè)簡(jiǎn)單的例子顯示用法。

<!DOCTYPE html>
<html>
<head>
   <link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet" />
   <script type="text/javascript" src="./ext-6.0.0/build/ext-all.js"></script>
   <script type="text/javascript" src="./ext-6.0.0/build/packages/charts/classic/charts.js"></script>
   <script type="text/javascript">
      Ext.onReady(function() {
         Ext.create({
            xtype: 'draw',
            renderTo: Ext.getBody(),
            width: 300,
            height:200,
            sprites: [{
               type: 'path',
               path: 'M150 0 L25 100 L250 100 Z',
               strokeStyle: '#333',
               fill: 'green',
               lineWidth: 2
            }]
         }); 
      });
   </script>
</head>
<body>
</body>
</html>

這將產(chǎn)生以下結(jié)果

Ext.js 路徑



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)