Yinru Posted September 18, 2008 Report Share Posted September 18, 2008 I have some data which lasts a few hours, less than a day. ChartFx works fine on my PC (both debug and release versions work fine). But on end users' machine, x-axis labels are missing if data last less than a day. I wonder if I miss something in deployment. I include ChartFx.dll, ChartFx.borders.dll, chartFx.base.dll in deployment. thanks I am using 6.2. Here is my code. Chart1.ClearData(SoftwareFX.ChartFX.ClearDataFlag.AllData); Chart1.Legend.Clear(); Chart1.ToolBar = true; Chart1.SerLegBox = true; Chart1.Visible = true; Chart1.LineStyle = System.Drawing.Drawing2D.DashStyle.Solid; Chart1.Palette = "DarkPastels.Pastels"; Chart1.Gallery = SoftwareFX.ChartFX.Gallery.Step; Chart1.MarkerSize = 2; Chart1.LineWidth = 2; Chart1.AxisX.LabelAngle = 90; Chart1.AxisX.LabelsFormat.CustomFormat = "M/d HH:mm"; Chart1.AxisX.Title.Text = "Time"; Chart1.AxisX.LabelsFormat.Format = SoftwareFX.ChartFX.AxisFormat.DateTime; Chart1.AxisX.Min = ; Chart1.AxisX.Max = ; Chart1.Scrollable = true; Chart1.AxisX.SetScrollView(0, 15); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.