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:
- Standard object: Account.
- Custom Field : score__c,score1__c
- Apex controller: TestPageController1.
- Visualforce page: gauge.
First of all the code for the controller that we will need is:
We have created a controller named GaugeController.
Now visual force page that we are creating for Gauge Meter:
The output that you will get is:
Components of the gauge are:
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:
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.
Leave A Comment