Beispiel #1
0
        public override string EvaluateModelTemplate(int counter)
        {
            string        templateName = "colDivTempPie" + counter.ToString();
            PieChartModel model        = this.ChartModel as PieChartModel;
            string        colString    = ChartsUtilities.EvaluateTemplate(model, "Mandrill_d3.PieChart.PieChartScript.html", templateName);

            return(colString);
        }
Beispiel #2
0
        public override void CreateChartModel(int counter)
        {
            PieChartModel model = new PieChartModel();

            model.Width      = this.Style.Width;
            model.HoverColor = ChartsUtilities.ColorToHexString(this.Style.HoverColor);
            model.Labels     = this.Style.Labels;
            model.DivId      = "div" + counter.ToString();
            model.Margins    = this.Style.Margins;

            // set grid address
            model.GridRow    = this.Style.GridRow;
            model.GridColumn = this.Style.GridColumn;

            // always round up for the grid size so chart is smaller then container
            model.SizeX = (int)System.Math.Ceiling(this.Style.Width / 100d);
            model.SizeY = (int)System.Math.Ceiling(this.Style.Width / 100d);

            if (this.Style.Colors != null)
            {
                string domainColors = new JavaScriptSerializer().Serialize(this.Style.Colors);
                model.DomainColors = domainColors;
                model.Colors       = true;
            }
            else
            {
                model.Colors = false;
            }

            // serialize C# Array into JS Array
            var    serializer = new JavaScriptSerializer();
            string jsData     = serializer.Serialize(this.Data.Data);

            model.Data = jsData;

            this.ChartModel = model;
        }