Initialize

[POST] /WCF/PivotGauge/Initialize

It fetches the Relational data required to render the PivotGauge control from server-end.

URL parameters

Parameter Description
action It holds the current action name as string
customObject It contains the custom object passed from client side

Response information

Code: 200

Content-Type: application/json

Response: serialized JSON string

Code example

  • C#
  • public Dictionary<string, object> Initialize(string action, string customObject)
    {
        htmlHelper.PivotReport = BindDefaultData();
        return htmlHelper.GetJsonData(action, ProductSales.GetSalesData());
    }