Wijmo ユーザーガイド > Angular JS ディレクティブ > AngularJS と Gauge ウィジェット > AngularJS と wijlineargauge |
この Angular 導入ガイドでは、HTML マークアップ、jQuery スクリプト、および AngularJS ディレクティブを使用して、wijlineargauge を HTML プロジェクト内で使用する方法について学習します。
コントローラーとモデルをそれぞれ個別のファイルで設定する、より複雑なサンプルについては、弊社 Web サイト「AngularJS Directive Gallery」内の「Wijmo Gauges」を参照してください。
ドロップダウンからマークアップをコピーします
任意のテキストエディタに貼り付けます。 |
コードのコピー |
---|---|
<!DOCTYPE HTML> <HTML ng-app="MyApp"> <head> </head> <body ng-controller="MyController"> </body> </HTML> |
ドロップダウンして参照コードをコピーし、head タグ内に貼り付けます。
参照 |
コードのコピー |
---|---|
<!-- jQuery --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/jquery-ui.min.js" type="text/javascript"></script> <!--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" /> <!-- Wijmo Scripts --> <script src="http://cdn.wijmo.com/jquery.wijmo-open.all.3.20173.128.min.js" type="text/javascript"></script> <script src="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20173.128.min.js" type="text/javascript"></script> <!-- Angular --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script> <script src="http://cdn.wijmo.com/interop/angular.wijmo.3.20173.128.min.js"></script> |
スクリプト |
コードのコピー |
---|---|
<script type="text/javascript"> var app = angular.module("MyApp", ["wijmo"]); function MyController($scope, $locale) { $scope.value = 70; } </script> |
マークアップ |
コードのコピー |
---|---|
<wij-lineargauge value="value" height="120" width="400" max="100" min="0"> <animation enabled="true" duration="400" easing=">"></animation> <face> <style fill="270-#FFFFFF-#D9E3F0" stroke="#7BA0CC" stroke-width="2"></style> </face> <labels> <style fill="#1E395B" font-size="12" font-weight="800"></style> </labels> <pointer shape="rect" length="0.6"> <style fill="#1E395B" stroke="#7BA0CC" stroke-width="1" opacity="1"></style> </pointer> <ranges> <range start-value="80" end-value="100" start-distance="0.85" end-distance="0.85" start-width="0.5" end-width="0.5"> <style fill="90-#3DA1D8-#3A6CAC" opacity="1" stroke="none"></style> </range> </ranges> </wij-lineargauge> <p>Drag and release the slider to change the gauge's value.</p> <wij-slider value="value" width="400px"></wij-slider> |