Create a Gauge Using Ruby on Rails
Overview
FusionCharts Suite XT includes the FusionCharts server-side RoR wrapper that lets you create interactive, data-driven charts. Using the wrapper, you can create charts in your browsers without writing any JavaScript code. The required JavaScript and HTML code is generated as a string in the server and inserted in the web page to generate charts.
In this article, we will show you how to install and render a gauge using the FusionCharts Rails gem wrapper.
Installation
In this article, we will show you how to download and install the FusionCharts Rails gem wrapper and all the other dependencies on your system.
Copy the 'fusionCharts-rails.rb
from
integrations > rubyonrails > fusioncharts-wrapper` in your project folder.Include the FusionCharts JavaScript files, which can be downloaded from here.
Include the FusionCharts theme file to apply the style to the gauge.
// Include FusionCharts core file
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
// Include FusionCharts Theme file
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
// Include FusionCharts core file
<script type="text/javascript" src="path/to/local/fusioncharts.js"></script>
// Include FusionCharts Theme file
<script type="text/javascript" src="path/to/local/themes/fusioncharts.theme.fusion.js"></script>
Add the FusionCharts Rail wrapper: _ Using RubyGems _ Manually
Include the FusionCharts Rails wrapper.
To add the FusionCharts Rails wrapper, use any of the following processes:
Gemfile
:
gem ‘fusioncharts-rails’
$bundle
fusioncharts-rails
gem. You can also install the gem directly from the command line prompt, without making any edits to the Gemfile
. To do this, use the code line given below:
$gem install fusioncharts-rails
fusioncharts-suite-xt > integrations > rubyonrails > fusioncharts-wrapper
folder.lib
folder of your applicationThat completes the installation of FusionCharts Suite and the Rails wrapper.
Create your first gauge
Gauges are powerful tools that can showcase information using a radial or linear scale to display data.
To start with, we'll build a simple angular gauge showcasing Nordstrom's Customer Satisfaction Score as shown below.
FusionCharts Suite has 95+ chart types for you to explore. Find the complete list of chart types here .
The angular gauge is shown below:
Chart data
The thresholds for the above sample is shown in the table below:
Range | Color | Hex Code |
---|---|---|
0-50 | Red | #F2726F |
50-75 | Yellow | #FFC533 |
75-100 | Green | #62B58F |
So, any score less than 50 is bad and is red. Any score between 50 and 75 is average and is yellow. Any score above 75 means good and are green.
FusionCharts accepts data in JSON format. Following code is the JSON representation of the above table with the required attributes to render the above chart.
{
// Chart Configuration
"chart": {
"caption": "Nordstrom's Customer Satisfaction Score for 2017",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"numberSuffix": "%",
"theme": "fusion",
"showToolTip": "0"
},
// Chart Data
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#F2726F"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#FFC533"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#62B58F"
}
]
},
"dials": {
"dial": [
{
"value": "81"
}
]
}
}
In the above JSON:
Create the
chart
object to define the elements of the gauge.Create the
colorRange
object to set the color associated with the specific range of values.Specify
minValue
andmaxValue
within thecolor
array under thecolorRange
object.Set the
code
attribute to specify the hex color of respective ranges.Create the
dials
object to represent the customer satisfaction score.Create the
dial
object underdials
object to set the value of customer satisfaction score.
The chart object and the respective arrays contain a set of key-value pairs known as attributes
. These attributes are used to set the functional and cosmetic properties of the gauge.
Now that you have the data in JSON format, let's see how to render the chart.
Render the Gauge
To render the gauge, follow the steps below:
Include the FusionCharts Rails wrapper in your project.
Include the
fusioncharts
library.Include the FusionCharts theme file to apply the style to the charts.
Set the gauge appearance configuration to display the data in the gauge.
Create an array named
chartDataObj
to save the color range data of the gauge.Create the gauge dial data in the array format (Multiple values can be separated by comma).
Set te chart data as JSON string.
Create the gauge instance and set the following:
Set the chart type as
angulargauge
. Each gauge is represented with a unique alias. For Angular Gauge, the alias isangulargauge
. Find the complete list of gauges with their respective alias here.Set the
width
andheight
(in pixels).Set the container for the chart.
Set the
dataFormat
as JSON.Embed the
json
data as the value of thedataSource
.
Create a container using
<div>
to render the chart.
The full code for the above sample is:
require 'json'
class FirstWidget
# Widget rendering
def self.getWidget
# Widget appearance configuration
widgetAppearancesConfigObj = {
"caption" => "Nordstrom's Customer Satisfaction Score for 2017",
"lowerLimit" => "0",
"upperLimit" => "100",
"showValue" => "1",
"numberSuffix" => "%",
"theme" => "fusion",
"showToolTip" => "0"
}
# Widget color range data
colorDataObj = {"color" => [
{"minValue" => "0", "maxValue" => "50", "code" => "#F2726F"},
{"minValue" => "50", "maxValue" => "75", "code" => "#FFC533"},
{"minValue" => "75", "maxValue" => "100", "code" => "#62B58F"}
]
}
# Widget dial data in array format, multiple values can be separated by comma e.g. ["81", "23", "45",...]
widgetDialDataArray = ["81"]
# Dial value in JSON format
widgetDialDataStr = ""
# Template for dial value
widgetDialDataTemplate = "{ \"value\": \"%s\" },"
# Iterates dial data array and converts them proper data format
widgetDialDataArray.each {|item|
data = widgetDialDataTemplate % [item]
widgetDialDataStr.concat(data)
}
# Removing trailing comma
widgetDialDataStr = widgetDialDataStr.chop
# Formats dial value(s)
widgetDialTemplate = "{ \"dial\": [%s]}"
widgetDialStr = ""
widgetDialStr = widgetDialTemplate % [widgetDialDataStr]
# Final Widget JSON template
widgetJSONTemplate = "{ \"chart\": %s, \"colorRange\": %s, \"dials\": %s}"
# Final Widget JSON data from template
widgetJSONStr = widgetJSONTemplate % [widgetAppearancesConfigObj.to_json, colorDataObj.to_json, widgetDialStr]
# Rendering the widget
widget = Fusioncharts::Chart.new({
width: "450",
height: "250",
type: "angulargauge",
renderAt: "widgetContainer",
dataSource: widgetJSONStr
})
end
end
The template of the above sample is shown below:
<<!-- Filename: app/views/examples/firstwidget.html.erb -->
<h3>My Widget</h3>
<div id="widget-container"></div>
<%[email protected]() %>
That's it! Your first gauge using FusionCharts Rails wrapper is ready. When you run this HTML page now, you should see a gauge representing your data.
Problem rendering the chart?
In case there is an error, and you are unable to see the chart, check for the following:
If you are getting a JavaScript error on your page, check your browser console for the exact error and fix accordingly. If you're unable to solve it, click here to get in touch with our support team.
If the chart does not show up at all, but there are no JavaScript errors, check if the FusionCharts Suite XT JavaScript library has loaded correctly. You can use developer tools within your browser to see if
fusioncharts.js
was loaded.If you get a Loading Data or Error in loading data message, check whether your JSON data structure is correct, or there are conflicts related to quotation marks in your code.