using
C1.Web.Mvc.Chart;
using
System;
using
System.Collections.Generic;
using
System.Linq;
using
System.Web;
using
System.Web.Mvc;
using
WebApiExplorer.Models;
namespace
WebApiExplorer.Controllers
{
public
partial
class
MVCFlexPieController : Controller
{
private
readonly
ImageExportOptions _flexPieModel =
new
ImageExportOptions
{
Exporter =
"wijmo.chart.ImageExporter"
};
private
static
IDictionary<
string
,
object
[]> CreateSettings()
{
var settings =
new
Dictionary<
string
,
object
[]>
{
{
"InnerRadius"
,
new
object
[]{0, 0.25, 0.5, 0.75}},
{
"Offset"
,
new
object
[]{0, 0.1, 0.2, 0.3, 0.4, 0.5}},
{
"StartAngle"
,
new
object
[]{0, 90, 180, -90}},
{
"Reversed"
,
new
object
[]{
false
,
true
}},
{
"Palette"
,
new
object
[]{
"standard"
,
"cocoa"
,
"coral"
,
"dark"
,
"highcontrast"
,
"light"
,
"midnight"
,
"minimal"
,
"modern"
,
"organic"
,
"slate"
}},
{
"DataLabel.Position"
,
new
object
[]{PieLabelPosition.None, PieLabelPosition.Inside, PieLabelPosition.Center, PieLabelPosition.Outside}},
{
"DataLabel.Border"
,
new
object
[]{
false
,
true
}},
};
return
settings;
}
public
ActionResult Index()
{
ViewBag.DemoSettingsModel =
new
ClientSettingsModel
{
Settings = CreateSettings(),
DefaultValues =
new
Dictionary<
string
,
object
> { {
"DataLabel.Position"
, PieLabelPosition.Center } }
};
ViewBag.Options = _flexPieModel;
return
View(CustomerOrder.GetCountryGroupOrderData());
}
}
}