smartadmin

get value of ion-rangeslider in Angular

牧云@^-^@ 提交于 2020-01-15 23:54:08
问题 I am using ion.rangeslider in my angular application and it displaying fine. But how can i get the value of the silder and i need to update min and max values of the slider dynamically. I have seen some of the questions in SO like this ion-rangeslider not getting displayed and ion RangeSlider: customize grid in case of custom values. some of other solutions but they didn't help me. my html is as follows <div class="form-group"> <input ionSlider id="sliderData" type="text" data-min="2000" data

Set one showRangeSelector for two DyGraph?

泄露秘密 提交于 2019-12-17 21:35:32
问题 I am using DyGraph from https://smartadmin-ng2.github.io/#/graphs/dygraphs. I want to control two dygraph with one showRangSelector. Right now both dygraph has own rang selector. But I want to control with one rang selector, Because both rang selector has same work. Show I want to show one screen shot for more understanding. dygraphsNoRollTimestamp.js angular.module('app.xyz').directive('dygraphsNoRollTimestamp', function (DygraphsDataDemo) { return { restrict: 'A', compile: function () {

Unable to get sparklines working in AngularJS version of SmartAdmin template

独自空忆成欢 提交于 2019-12-02 16:24:34
问题 I have started a angularjs seed project with SmarrAdmin template. I would like to create a sparkline in a view like this <div class="sparkline" data-sparkline-type="bar" data-sparkline-width="50px" data-sparkline-bar data-sparkline-height="25px"> 50,40,70 </div> But the chart doesn't show up and all i see is "50, 40, 70"... 回答1: After creating a seed angular project i had to add/uncomment the module 'app.graphs' in app.js. The sparkline container is a directive implemented in this module. 来源:

Unable to get sparklines working in AngularJS version of SmartAdmin template

杀马特。学长 韩版系。学妹 提交于 2019-12-02 07:32:25
I have started a angularjs seed project with SmarrAdmin template. I would like to create a sparkline in a view like this <div class="sparkline" data-sparkline-type="bar" data-sparkline-width="50px" data-sparkline-bar data-sparkline-height="25px"> 50,40,70 </div> But the chart doesn't show up and all i see is "50, 40, 70"... After creating a seed angular project i had to add/uncomment the module 'app.graphs' in app.js. The sparkline container is a directive implemented in this module. 来源: https://stackoverflow.com/questions/37027755/unable-to-get-sparklines-working-in-angularjs-version-of