48 строки
2.5 KiB
C#
48 строки
2.5 KiB
C#
|
#region Copyright Syncfusion Inc. 2001-2022.
|
||
|
// Copyright Syncfusion Inc. 2001-2022. All rights reserved.
|
||
|
// Use of this code is subject to the terms of our license.
|
||
|
// A copy of the current license can be obtained at any time by e-mailing
|
||
|
// licensing@syncfusion.com. Any infringement will be prosecuted under
|
||
|
// applicable laws.
|
||
|
#endregion
|
||
|
using Syncfusion.JavaScript;
|
||
|
using Syncfusion.JavaScript.Olap;
|
||
|
using Syncfusion.PivotAnalysis.Base;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Net;
|
||
|
using System.Net.Http;
|
||
|
using System.Web.Http;
|
||
|
using System.Web.Script.Serialization;
|
||
|
|
||
|
namespace MVCSampleBrowser
|
||
|
{
|
||
|
public class RelationalGaugeController : ApiController
|
||
|
{
|
||
|
PivotGauge htmlHelper = new PivotGauge();
|
||
|
JavaScriptSerializer serializer = new JavaScriptSerializer();
|
||
|
Dictionary<string, object> dict = new Dictionary<string, object>();
|
||
|
|
||
|
[HttpPost]
|
||
|
[ActionName("InitializeGauge")]
|
||
|
public Dictionary<string, object> InitializeGauge(Dictionary<string, object> jsonResult)
|
||
|
{
|
||
|
htmlHelper.PivotReport = BindDefaultData();
|
||
|
dict = htmlHelper.GetJsonData(jsonResult["action"].ToString(), ProductSales.GetSalesData());
|
||
|
return dict;
|
||
|
}
|
||
|
|
||
|
private PivotReport BindDefaultData()
|
||
|
{
|
||
|
PivotReport pivotSetting = new PivotReport();
|
||
|
pivotSetting.PivotRows.Add(new PivotItem { FieldMappingName = "Date", FieldHeader = "Date", TotalHeader = "Total" });
|
||
|
pivotSetting.PivotRows.Add(new PivotItem { FieldMappingName = "State", FieldHeader = "State", TotalHeader = "Total" });
|
||
|
pivotSetting.PivotColumns.Add(new PivotItem { FieldMappingName = "Product", FieldHeader = "Product", TotalHeader = "Total", ShowSubTotal = false });
|
||
|
pivotSetting.PivotColumns.Add(new PivotItem { FieldMappingName = "Country", FieldHeader = "Country", TotalHeader = "Total", ShowSubTotal = false });
|
||
|
pivotSetting.PivotCalculations.Add(new PivotComputationInfo { CalculationName = "Amount", Description = "Amount", FieldHeader = "Amount", FieldName = "Amount", Format = "C", SummaryType = Syncfusion.PivotAnalysis.Base.SummaryType.DoubleTotalSum });
|
||
|
pivotSetting.PivotCalculations.Add(new PivotComputationInfo { CalculationName = "Quantity", Description = "Quantity", FieldHeader = "Quantity", FieldName = "Quantity", SummaryType = Syncfusion.PivotAnalysis.Base.SummaryType.DoubleTotalSum });
|
||
|
return pivotSetting;
|
||
|
}
|
||
|
}
|
||
|
}
|