Jump to content
Software FX Community

jpatracar

Members
  • Posts

    2
  • Joined

  • Last visited

jpatracar's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello, I'm creating a new report where it will show in AxisX months (month and year) and AxisY currency values. The query throws me this information: Fecha Saldo 01/04/2010 138 01/05/2010 164 So basically what I do in chartFX is set the format I want to show to the user and display the information but I'm having problems with the second month (the label is not being shown). This is the code Im using for the AxisX (I believe I'm missing something) //AxisX format ChartFX.WinForms.AxisX x = this.chart1.AxisX; x.DataFormat.Format = ChartFX.WinForms.AxisFormat.Date; x.Step = 30; x.DataFormat.CustomFormat = "MM" + Application.CurrentCulture.DateTimeFormat.DateSeparator + "yyyy"; x.Style = ChartFX.WinForms.AxisStyles.AutoScale; x.LabelsFormat.CustomFormat = x.DataFormat.CustomFormat; x.LabelAngle = 90; x.Visible = true; I'm also using Data.Compact but I believe this is not required since the information I am sending is already compacted? Any ideas are appreciated Thanks,
  2. Hello, I've been trying to pass AxisY values into a new pane but still can't figure it out how. Here's the idea: The series "Velocidad" needs to been seen in a different pane because the min max values will not be the same as the "tanque'N'" series. (The information is bound to a BindingSource variable..) image link can be found here Any ideas? Thanks for your help and time.
×
×
  • Create New...