Wijmo ユーザーガイド > ウィジェット > Chart ウィジェット > CompositeChart > クイックスタート |
このクイックスタートは、Web ページの作成、wijcompositechart ウィジェットの追加、およびウィジェットの外観と動作のカスタマイズを行います。
ドロップダウンしてマークアップをコピーします
テキストエディタに張り付けます |
コードのコピー |
---|---|
<!DOCTYPE HTML> <HTML> <head> </head> <body> </body> </HTML> |
ドロップダウンからリファレンスをコピーして head タグ内に張り付けます。
リファレンス |
コードのコピー |
---|---|
<!--Theme--> <link href="http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css" rel="stylesheet" type="text/css" /> <!--Wijmo Widgets CSS--> <link href="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20173.128.min.css" rel="stylesheet" type="text/css" /> <!--RequireJs--> <script type="text/javascript" src="http://cdn.wijmo.com/external/require.js"></script> |
ドロップダウンからマークアップをコピーして body タグ内に張り付けます。
マークアップ |
コードのコピー |
---|---|
<div id="wijcompositechart" style="width: 500px; height: 400px"> </div> |
ドロップダウンからスクリプトをコピーして head タグ内に張り付けます。
スクリプト |
コードのコピー |
---|---|
<script type="text/javascript"> requirejs.config({ baseUrl: "http://cdn.wijmo.com/amd-js/3.20173.128", paths: { "jquery": "jquery-1.11.1.min", "jquery-ui": "jquery-ui-1.11.0.custom.min", "jquery.ui": "jquery-ui", "jquery.mousewheel": "jquery.mousewheel.min", "globalize": "globalize.min" } }); </script> <script id="scriptInit" type="text/javascript"> require(["wijmo.wijcompositechart"], function () { $(document).ready(function () { $("#wijcompositechart").wijcompositechart({ axis: { y: {text: "Total Hardware"}, x: {text: ""} }, hint: { content: function () {return this.label + '\n ' + this.y + '';} }, header: {text: "Hardware Distribution"}, seriesList: [{ type: "column", label: "West", data: { x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], y: [5, 3, 4, 7, 2] } }, { type: "column", label: "Central", data: { x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], y: [2, 2, 3, 2, 1] } }, { type: "column", label: "East", data: { x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], y: [3, 4, 4, 2, 5] } }, { type: "pie", label: "asdfdsfdsf", center: { x: 150, y: 150 }, radius: 60, data: [ {label: "MacBook Pro",data: 46.78}, {label: "iMac", data: 23.18}, {label: "MacBook", data: 20.25} ] }, { type: "line", label: "Steam1", data: { x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], y: [3, 6, 2, 9, 5] }, markers: {visible: true, type: "circle"} }, { type: "line", label: "Steam2", data: { x: ['Desktops', 'Notebooks', 'AIO', 'Tablets', 'Phones'], y: [1, 3, 4, 7, 2] }, markers: {visible: true, type: "tri"} }] }); }); }); </script> |