Ext.js 矩形

2022-05-20 16:09 更新

描述

此類型用于創(chuàng)建繪圖的矩形形狀。

語法

這里是添加矩形的簡單語法。

xtype: 'draw',
type: 'rect'

下面是一個簡單的例子顯示用法。

<!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('Ext.draw.Component', {
            sprites: [{
               type: 'rect',
               height : 200,
               width: 600,
               fill: 'red'
            }],
            height:150,
            width:300,
            renderTo:Ext.getBody()
         });
      }); 
   </script>
</head>
<body>
</body>
</html>

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

Ext.js 矩形圖



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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號