コード例 #1
0
ファイル: Legend.cs プロジェクト: gitgreencoder/Mandrill
        public override string EvaluateModelTemplate(int counter)
        {
            string      templateName = "colDivTempLegend" + counter.ToString();
            LegendModel model        = this.ChartModel as LegendModel;
            string      colString    = ChartsUtilities.EvaluateTemplate(model, "Mandrill_d3.Legend.Legend.html", templateName);

            return(colString);
        }
コード例 #2
0
ファイル: Legend.cs プロジェクト: gitgreencoder/Mandrill
        public override void CreateChartModel(int counter)
        {
            LegendModel model = new LegendModel();

            model.Width         = this.Style.Width;
            model.Height        = this.Style.Height;
            model.DivId         = "div" + counter.ToString();
            model.Title         = this.Style.Title;
            model.RectangleSize = this.Style.RectangleSize;

            // 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.Height / 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;
        }