Questions tagged [dashing]

A Sinatra based framework for building dashboards in simple way, it uses premade widgets, or fully create your own with scss, html, and coffeescript.

Dashing is a Sinatra based framework that lets you build dashboards in a simple way, it uses premade widgets, or fully create your own with scss, html, and coffeescript.

Questions tagged should also be tagged .


Resources


Reated tags

241 questions
1
vote
1 answer

Trouble putting JSON into a Rickshaw Graph on Dashing

I'm trying to create a dashing dashboard based on some JSON data; however, I can't find a widget that supports these types of data sets (specifically using dates on the x-axis). I've tried Rickshaw but no luck. Any suggestions? Sample…
devpreneur
  • 139
  • 1
  • 9
1
vote
2 answers

Dashing doesn't detect change of coffescript

I'm working on some dashing widgets in a dashboard project. Normally if I work on a coffeescript and I save it, I have to reload the page in the browser, and I can see the effect of my changes in the widget. For some time the change won't do any…
Mattia72
  • 825
  • 1
  • 8
  • 23
1
vote
1 answer

Rickshaw Stacked Multi-graph

I am working with this multi-graph Dashing widget. It works correctly, but it uses only two data series and I want to add one more. I have modified the .coffee file to class Dashing.Mgraph extends Dashing.Widget @accessor 'current', -> …
user1893354
  • 5,778
  • 12
  • 46
  • 83
1
vote
2 answers

Error with Ruby Google Analytics API

I am trying to use this Ruby Google Analytics API Dashing widget whose Ruby file is require 'google/api_client' require 'date' # Update these to match your own apps credentials service_account_email = '[YOUR SERVICE ACCOUNT EMAIL]' # Email…
user1893354
  • 5,778
  • 12
  • 46
  • 83
1
vote
1 answer

Ruby Dashboard - Dashing - needs rails to run?

Trying to set up the sample project following the instructions found on the project page for Dashing. When starting up using the command: $ dashing start, nothing happens, no errors, no output, nothing. I have not install rails and its not…
user955732
  • 1,330
  • 3
  • 21
  • 48
1
vote
1 answer

Ruby Uninitialized constant error

I am using a dashing weather widget but it seems to be creating an error when I run the Ruby job file. The following is the Ruby file require 'net/https' require 'json' # Forecast API Key from https://developer.forecast.io forecast_api_key = "" #…
user1893354
  • 5,778
  • 12
  • 46
  • 83
1
vote
1 answer

Issue parsing web page data from twitter for dashing ruby app

I think my issue is the same as that in Having problems with Ruby file from Dashing which as to date no answer. Full problem is when I start dashing I get. scheduler caught exception: undefined method `[]' for…
1
vote
1 answer

shopify/Dashing workshop coffeescript syntax issue

i am currently working on a project which is taking an active check feed from Nagios Check_mk and displaying on a text widget. i am trying to get the widget to change colour, working through the workshop page i am stuck with the coffee script, it…
1
vote
1 answer

How do I bind multiple classes in batman.js?

I am building a Dashings dashboard and using font-awesome to display icons in a widget. I am trying to bind a dynamic class and a static class to one tag in the html such as but obviously this isn't…
Soler
  • 119
  • 1
  • 7
1
vote
1 answer

How to load a new dashboard in Dashing when you click on a bar in the highbar widget

I am creating a dashboard in Dashing and am using the highbar widget to display some data. I want to be able to load a new dashboard displaying more detailed data about what you clicked on when you click on a particular bar. I know how to load a new…
Soler
  • 119
  • 1
  • 7
1
vote
1 answer

Integrate Jenkins trend chart into dashing dashboard

We are running a Jenkins instance with various test jobs as part of the build chain. I would like to integrate the build, test trend and general CI status information into graphs/widgets using the Shopify Dashing dashboard…
kalenwatermeyer
  • 741
  • 12
  • 24
0
votes
3 answers

Unity2D - Side scroller: Teleport player a fixed distance inside a predefined "cone" (Katan Zero style)?

I'm very new to Unity (it hasn't been a full week since I started). For my first project I have decided to create a small game for mobile. It's kind of a way to get warm with the engine and eventually do something bigger. Anyway, I'm trying to do…
0
votes
1 answer

Dashing dashboard. How to change the 'updatedAtMessage' to be in twelve hour time?

I am creating a dashboard with Dashing. In the html for the widgets I have: data-bind="updatedAtMessage", which I got from when I downloaded dashing to display when the widget was updated. I have searched everywhere and cannot seem to find where…
cam_cudi
  • 41
  • 1
  • 4
0
votes
1 answer

I want to custom CSS of my django-dashing, all widgets

I want to add css in django-dashing for override all widget. I tried follow this doc https://django-dashing.readthedocs.io/en/latest/getting-started.html#template-file But I don't understand : "Also make sure the app which hosts the…
Eva
  • 23
  • 3
0
votes
2 answers

Extract Single Data From JSON URL for Dashing Dashboard

I am trying to show the "sgv" value on a Dashing / Smashing dashboard widget. Ultimately I would also like to show the "direction" value as well. I am running into problems pulling that precise value down which changes every 3 to 5 minutes. I have…