Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
90
Formation is not working
posted
I am using ultra chart. I created a chart of type scater chart it shows the y-axis values alomost right but the values on x-axis are not showing right.it is displaying "00.##" for each point on x-axis. but i want to display the date. here is my code please help me. NumericTimeSeries ts = new NumericTimeSeries(); while (reader.Read()) { ListItem li = new ListItem(); li.Text = reader["AsapApplication"].ToString(); addItems(li); ts.Points.Add(new NumericTimeDataPoint(System.DateTime.Parse(reader["Date"].ToString()), Convert.ToDouble(reade["PageCount"]), "Admin", false)); } this.chartActivityByDay.Series.Add(ts); this.chartActivityByDay.TitleTop.Text = "Activity By Date"; this.chartActivityByDay.Axis.X.Labels.ItemFormat = Infragistics.UltraChart.Shared.Styles.AxisItemLabelFormat.DataValue ; this.chartActivityByDay.ChartType = Infragistics.UltraChart.Shared.Styles.ChartType.ScatterChart; this.chartActivityByDay.ScatterChart.ConnectWithLines = true; this.chartActivityByDay.ScatterChart.LineAppearance.Thickness = 1; this.chartActivityByDay.Visible = true; this.chartActivityByDay.Width = 450; I am loading the data from database.