Think. Build. Salesforce Solutions.

Salesforce Consulting Services across Salesforce Clouds & Across App Lifecycles

Blog

Dynamic Gauge in salesforce

By |2020-07-15T09:04:49+00:00December 2nd, 2015|Tags: , , , , , |

Salesforce provides us standard functionality to create Reports and dashboards to represent records in diagrammatic form. Sometimes we face the requirement to represent our data in diagrammatic Form on visual force page in some specific type of diagram we represent it using the chart. Salesforce provide us Bar chart, Pie chart, Gauge chart, Radar charts

Here I am going to explain how we can represent specific field data in the form of a gauge chart. To achieve this requirement we need four things basically. First, we should have an object whether it’s a standard or custom object, a field associated with that object that should hold any numeric Value, apex controller, apex class.

I will start with an object lets say I have a standard controller Account where I have a custom field Score and I need to represent that score in the form of gauge. Whenever page loads that value represents in the form of gauge and whenever the fields value changes the gauge should reflect that Change.

So the items that we have is:

  1. Standard object: Account.
  2. Custom Field : score__c,score1__c
  3. Apex controller: TestPageController1.
  4. Visualforce page: gauge.

First of all the code for the controller that we will need is:

We have created a controller named GaugeController.

salesforce gauge chart dynamic
Now visual force page that we are creating for Gauge Meter:

gauge chart salesforce
The output that you will get is:

salesforce gauge chartComponents of the gauge are:

gauge salesforce
ColorSet: holds the value for gauge color.
DataField: holds the value for which it creates gauge. Basically this value comes from the
wrapper
Class variable that we have declared in apex controller.
Donut: use to set the width of gauge.
Highlight: we use to highlight the value section for ex:
gauge component salesforce
Needle: it is used to show the needle at the value.
Tips: It is used to highlight the left region from the different color if its value is set to true now when the value is false it shows like.
salesforce gauge chart dynamic

Leave A Comment