Jump to content
Software FX Community

CarlosAC

Members
  • Posts

    204
  • Joined

  • Last visited

Everything posted by CarlosAC

  1. Hi gopikrish You can try adding some FieldMap object to the DataSourceSettings. Those objects allows you to configure how Chart FX will store the data provided by the DataProvider. Please check the following code: chart1.DataSourceSettings.Fields.Add(new FieldMap("Date",FieldUsage.XValue)); chart1.DataSourceSettings.Fields.Add(new FieldMap("High",FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add(new FieldMap("Low",FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add(new FieldMap("Closed",FieldUsage.Value)); chart1.DataSource = ds.Tables[0]; More information in Chart FX Samples & Resource Center >>> API Reference >>> Chart FX WebForms >>> DataSourceSetttings Class >>> Properties >>> Fields. Carlos Chaves
  2. [color= #1f497d; mso-ansi-language: EN-US" lang=EN-US>Hi thanhtung<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> In the samples the chart is added to a <div> tag. You can remove the chart and the code related to this chart. Then, you can add you own static image. Please note that, in the sample
  3. Hi Iain Pattison Please contact our Support team via e-mail at support{at}softwarefx{dot}com. Please include a complete repro case we can work with. We have recently found a similar issue with the 3D Pie, so current issue can be included as part as the report to our development team. Carlos Chaves.
  4. Hi Smartie With the code you sent me I continue unable to reproduce similar samples as the one you added as images. I recommend you to contact our support staff via e-mail at support{at}softwarefx{dot}com. Please include a complete repro case we can work with. Carlos Chaves.
  5. Hi ryanlcs Please try using the following code: chart1.AxisX.Grids.Major.Visible = false; Carlos Chaves
  6. Hi thanhtung Please check the Online Samples (http://demo.softwarefx.com/chartfx/aspnet/ajaxsamples/). Please refer to
  7. Hi cybertechsum Unfortunately, Chart FX Internet 5.5 was not desing for working in the .NET technology. Please note that we have a different component completely designed for Visual Studio. Please check it at the following link: http://www.softwarefx.com/sfxNetProducts/ChartFX/ If you want to download a trial versi
  8. Hi Smartie I need you to send me the PointLabelOrganizer configuration. You can reply this post or sent an e-mail to support{at}softwarefx{dot}com. If you select the second choice, I strongly recommend you to add a sample project (repro case). Carlos Chaves.
  9. Hi Jens There is not a gallery type that fills your requirements. As a workaround, you can select the Scatter Gallery and add some AnnotationArrow object that links the horizontal empty space between the points. You can get more information about the Annotations objects on the Resource Center. Carlos Chaves
  10. Hi Vax Unfortunately, there is not an available option in order to automatically wrap the axes labels. You should manually modify the label text. Carlos Chaves
  11. Hi piiguu Please try the following code: Command properties = Chart1.Commands[CommandId.Gallery];properties.Enabled = false; it will disable the
  12. Hi jpatracar Please try removing the Step property (x.Step = 30). Note that the difference of both dates are 31 days and not 30. Carlos Chaves
  13. Hi ryanics If you want to set the Y scale on Chart FX 7, please try using the following code: Chart1.AxisY.Min = 0;Chart1.AxisY.Max = 100; Maybe it is trying to set the steps of the tick marks and labels. If so, please try using the following code: Chart1.AxisY.Step = 20; -- Carlos Chaves
  14. Hi Vax If you want to have more than one value on a single X point, you should have more than one series. Also, note that Chart FX needs the same number of points for each series. If you want, you can add
  15. aliwaheed This is a known issue when rendering the chart as .NET format (or ActiveX). Please note that you will see this behavior with any object rendered as .NET format, and not only with Chart FX. Carlos Chaves
  16. Hi vishalhkd You can get this information within the Programmer
  17. Hi korthmat Please try the following code: AnnotationArrow arrow = new AnnotationArrow();arrow.Border.Color = Color.Red;arrow.Border.Width = 4;arrow.Color = Color.Red;arrow.Height = 0;arrow.Width = 100;arrow.Attach(2, 30);arrow.EndCap.Height = 1;arrow.EndCap.Width = 0;arrow.EndCap.Filled = false; Carlos Chaves
  18. Hi ehuynh There is no direct way to show axis as percentage format in histogram charts. You need to manipulate the percentage of points covered in each interval using code. You need to do some calculations here. If the total number of points is 100, then it
  19. Hi aliwaheed Are you rendering the Chart as a .NET object or as an Image? Carlos Chaves
  20. Hi Tom Kauer There is no difference in the licensing management between Microsoft Windows 7 and Microsoft Windows XP. It seems the license is not being added to the executable file. Please contact Software FX Support at suppot[at]softwarefx[dot]com for more information. Please include (when contacting Support) your product serial number. Carlos Chaves
  21. Hi AlexeyRedko It seems the license is not being added to the executable file. Please contact Software FX Support at suppot[at]softwarefx[dot]com for more information. Please include (when contacting Support) your product serial number. Carlos Chaves
  22. Hi Zacki This post is being managed by the support team. We need a repro case in order to try to reproduce the issue at our side. Carlos Chaves.
  23. CarlosAC

    Need Help

    Hi Ciro Software FX created some samples available in our webpage. One of them reproduce a similar scenario you are expecting, I strongly recommend you to check
  24. Hi pclem<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Please contact Software FX Support at suppot[at]softwarefxp[dot]com in order to receive the steps you need to follow in order to fix the issue you are facing. When contacting our support department, please include a reference to current post and your product serial number. Carlos Chaves
  25. Hi mcstoufer I apologize for the misunderstanding. I meant
×
×
  • Create New...