在本文中將以示例說明如何使用Kendo UI Web中的Kendo UI DataViz添加儀表和圖表。下面的示例將說明如何添加一個圖表到現有的頁面,具體的示例以下: css
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>My Kendo UI Application</title>
- </head>
- <body>
- <header>
- <h1>My Kendo UI Application</h1>
- </header>
- <!-- page content goes here -->
- <div role="main">
- </div>
- <footer>
- <p>Kendo UI FTW!</p>
- </footer>
- </body>
- </html>
>>>
完整示例代碼
下面就是要爲圖表聲明一個目標元素,將會由一個div元素表明,還須要一個腳本塊初始化和配置區域圖,下面就是一個隨着數據的區域圖示例。 html
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>My Kendo UI Application</title>
-
- <!-- Kendo UI HTTP CDN style reference for DataViz -->
- <link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.dataviz.min.css">
-
- </head>
- <body>
- <header>
- <h1>My Kendo UI Application</h1>
- </header>
- <!-- page content goes here -->
- <div role="main">
- <!-- chart/gauge -->
- <div id="chart">
- </div>
- </div>
- <footer>
- <p>Kendo UI FTW!</p>
- </footer>
>>>
完整示例代碼
>>>
Kendo UI Web
下載