Jump to content
Software FX Community

Yinru

Members
  • Posts

    1
  • Joined

  • Last visited

Yinru's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. 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);
×
×
  • Create New...