public Dictionary <string, object> CalculatedField(string action, string headerTag, string currentReport) { htmlHelper.PopulateData(currentReport); dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), null, headerTag); return(dict); }
public Dictionary <string, object> InitializeChart(Dictionary <string, object> jsonResult) { this.BindData(); return(PivotChart.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData())); }
public Dictionary <string, object> NodeDropped(string action, string dropAxis, string headerTag, string sortedHeaders, string filterParams, string currentReport) { htmlHelper.PopulateData(currentReport); dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), dropAxis, headerTag, filterParams, sortedHeaders); return(dict); }
public Dictionary <string, object> Sorting(string action, string sortedHeaders, string currentReport) { htmlHelper.PopulateData(currentReport); dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), sortedHeaders); return(dict); }
public Dictionary <string, object> CellEditing(string action, string index, string valueHeaders, string summaryValues, string currentReport) { htmlHelper.PopulateData(currentReport); dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), index, summaryValues, valueHeaders); return(dict); }
public Dictionary <string, object> InitializeGrid(string action) { htmlHelper.PivotReport = BindDefaultData(); dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData()); return(dict); }
public Dictionary <string, object> DrillChart(string action, string drilledSeries) { this.BindData(); return(PivotChart.GetJsonData(action, ProductSales.GetSalesData(), drilledSeries)); }
public Dictionary <string, object> CalculatedField(Dictionary <string, object> jsonResult) { htmlHelper.PopulateData(jsonResult["currentReport"].ToString()); dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData(), null, null, jsonResult["headerTag"].ToString(), null, null, jsonResult["valueSorting"].ToString()); return(dict); }
public Dictionary <string, object> Sorting(Dictionary <string, object> jsonResult) { htmlHelper.PopulateData(jsonResult["currentReport"].ToString()); dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData(), jsonResult["sortedHeaders"].ToString()); return(dict); }
public Dictionary <string, object> InitializeChart(string action, string currentReport, string customObject) { this.BindData(); return(PivotChart.GetJsonData(action, ProductSales.GetSalesData())); }
public Dictionary <string, object> NodeDropped(Dictionary <string, object> jsonResult) { htmlHelper.PopulateData(jsonResult["currentReport"].ToString()); dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData(), null, jsonResult["dropAxis"].ToString(), jsonResult["headerTag"].ToString(), jsonResult.ContainsKey("filterParams") ? jsonResult["filterParams"].ToString() : null, jsonResult["sortedHeaders"].ToString(), jsonResult["valueSorting"].ToString()); return(dict); }
public Dictionary <string, object> CellEditing(Dictionary <string, object> jsonResult) { htmlHelper.PopulateData(jsonResult["currentReport"].ToString()); dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData(), null, jsonResult["index"].ToString(), jsonResult["summaryValues"].ToString(), null, jsonResult["valueHeaders"].ToString(), jsonResult["valueSorting"].ToString()); return(dict); }
public Dictionary <string, object> DeferUpdate(Dictionary <string, object> jsonResult) { htmlHelper.PopulateData(jsonResult["currentReport"].ToString()); dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData(), null, null, null, jsonResult["sortedHeaders"].ToString(), jsonResult["filterParams"].ToString(), jsonResult["valueSorting"].ToString()); return(dict); }
public Dictionary <string, object> DrillChart(Dictionary <string, object> jsonResult) { this.BindData(); return(PivotChart.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData(), jsonResult["drilledSeries"].ToString())); }
public Dictionary <string, object> DeferUpdate(string action, string filterParams, string sortedHeaders, string currentReport) { htmlHelper.PopulateData(currentReport); dict = htmlHelper.GetJsonData(action, ProductSales.GetSalesData(), null, null, null, sortedHeaders, filterParams); return(dict); }
public Dictionary <string, object> InitializeGauge(string action, string customObject) { htmlHelper.PivotReport = BindDefaultData(); return(htmlHelper.GetJsonData(action, ProductSales.GetSalesData())); }
public Dictionary <string, object> InitializeGauge(Dictionary <string, object> jsonResult) { htmlHelper.PivotReport = BindDefaultData(); dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData()); return(dict); }