Jump to content
Software FX Community

x-axis label is missing when deployment


Yinru

Recommended Posts

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); 

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...