using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Innotron.Prototype.Clients.Portal.Constants;
using Innotron.Prototype.General.Translations;
namespace Innotron.Prototype.Clients.Portal.Models
{
public class KendoChart
{
public KendoChart()
{
title = new KendoChartTitle();
seriesDefaults = new KendoChartSeriesDefaults();
chartArea = new KendoChartChartArea();
legend = new KendoChartLegend();
series = new List<KendoChartSeries>();
valueAxis = new List<KendoChartValueAxis>();
tooltip = new KendoChartTooltip();
categoryAxis = new KendoChartCategoryAxis();
zoomable = new KendoChartZoomable();
pointer = new KendoChartPointer();
scale = new KendoChartScale();
}
public KendoChartTitle title {
get; set; }
public KendoChartSeriesDefaults seriesDefaults {
get; set; }
public KendoChartChartArea chartArea {
get; set; }
public KendoChartLegend legend {
get; set; }
public List<KendoChartSeries> series {
get; set; }
public List<KendoChartValueAxis> valueAxis {
get; set; }
public KendoChartTooltip tooltip {
get; set; }
public KendoChartCategoryAxis categoryAxis {
get; set; }
public KendoChartZoomable zoomable {
get; set; }
public KendoChartPointer pointer {
get; set; }
public KendoChartScale scale {
get; set; }
}
public class KendoChartScale
{
public KendoChartScale()
{
ranges = new List<KendoChartRanges>();
}
public double? minorUnit