public override string EvaluateModelTemplate(int counter) { string templateName = "colDivTempGroupedBar" + counter.ToString(); GroupedBarChartModel model = this.ChartModel as GroupedBarChartModel; string colString = ChartsUtilities.EvaluateTemplate(model, "Mandrill_d3.GroupedBarCharts.GroupedBarChartScript.html", templateName); return(colString); }
public override void CreateChartModel(int counter) { GroupedBarChartModel model = new GroupedBarChartModel(); model.Width = this.Style.Width; model.Height = this.Style.Height; model.YAxisLabel = this.Style.YAxisLabel; model.BarHover = ChartsUtilities.ColorToHexString(this.Style.BarHoverColor); 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.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; } if (this.Data.Domain == null) { model.Domain = false; } else { model.Domain = true; model.DomainA = this.Data.Domain.A.ToString(); model.DomainB = this.Data.Domain.B.ToString(); } model.Data = this.Data.ToJsonString(); this.ChartModel = model; }