Jump to content
Software FX Community

AndreG

Staff
  • Posts

    333
  • Joined

  • Last visited

Everything posted by AndreG

  1. This forum is for Chart FX for Reporting Services. Are you sure you have posted under the right forum?
  2. To attach an image, click on the "Options" tab (on top of the quoted text on your reply) and then on the "Add/Update" button.
  3. This forum is for Gauges. Can you post a screenshot of what you mean?
  4. Hello happyid, Attached is a sample on how to use custom indicators. Regards,
  5. You are correct, my mistake. The text property affects the tooltip only. Try using annotation: http://support.softwarefx.com/Chart_FX_7/article/2601013#06bce952-3234-e211-84a5-0019b9e6b500
  6. Yes, there is a property in AxisSection for that (Text): http://support.softwarefx.com/Chart_FX_7/api#web_htmls/axissection_text.htm
  7. Great. If you ever update the dlls (using a hotfix or service pack) do not forget to update that one manually as well.
  8. One solution would be to copy the designer dll to the PrivateAssemblies folder of Visual Studio (C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies). Give that a try, let us know.
  9. Try this. You won't even need the mappings below if all you have is 1 column for strings and 2 for doubles. string data = "<?xml version=\"1.0\"?>" + "<CHARTFX>" + " <COLUMNS>" + " <COLUMN NAME=\"Date\" TYPE=\"String\"/>" + " <COLUMN NAME=\"Series1\" TYPE=\"Double\"/>" + " <COLUMN NAME=\"Series2\" TYPE=\"Double\"/>" + " </COLUMNS>" + " <ROW Date=\"1/5/2014\" Series1=\"9\" Series2=\"10\"></ROW>" + " <ROW Date=\"1/6/2014\" Series1=\"10\" Series2=\"11\"></ROW>" + " <ROW Date=\"1/7/2014\" Series1=\"13\" Series2=\"14\" ></ROW>" + "</CHARTFX>"; XmlDataProvider cfxXML = new XmlDataProvider(); cfxXML.LoadXml(data); chart1.DataSourceSettings.Fields.Add(new FieldMap("Date",FieldUsage.Label)); chart1.DataSourceSettings.Fields.Add(new FieldMap("Series1",FieldUsage.Value)); chart1.DataSourceSettings.Fields.Add(new FieldMap("Series2",FieldUsage.Value)); chart1.DataSourceSettings.DataSource = cfxXML;
  10. Hello John, Unfortunatelly this is not possible. This would be a hibrid of categorical and numerical axis. Not supported. I apologize for the inconvenience. Maybe what you are looking for is just a regular categorical axis (where the dates on the axis are just labels and not data)?
  11. Hello Chen, Please visit www.mysoftwarefx.com/servicepack and download the latest service pack available to you. Give those dlls a try and let me know if it fixes the issue. Regards,
  12. Hello Chen, What version of the dlls are you currently using (7.0.XXXX)? Regards, Andre
  13. With an expired support you will not be able to download the latest version of Chart FX 7, which we made compatible with Visual Studio 2013.
  14. You can obtain Chart FX 8 with a current subscription of Studio FX Premium Subscription. If you already have a license of Chart FX 7 all you need to do is renew or upgrade. We keep working on our supported products and we have already released a version of Chart FX 7 that is compatible with Visual Studio 2013. Just like any other updates it is free for anyone with a valid subscription (whether that is a Premium Subscription or just a Support Subscription). If you do not have a current subscription your most affordable route would be to procure a Studio FX Support Subscription, for a Chart FX 7 update. http://www.softwarefx.com/studiofx/
  15. Take a look at combination chart: http://support.softwarefx.com/Chart_FX_7/article/2501002#8dc19bc7-0534-e211-84a5-0019b9e6b500 How to reorder your series: http://support.softwarefx.com/Chart_FX_7/article/2501002#a2c76abd-0634-e211-84a5-0019b9e6b500 Pointlabels will always be drawn on top and not covered by the bar.
  16. Try taking a look at this kb article, it might help. http://support.softwarefx.com/Chart_FX_7/article/1501124#9f6d08f3-7d39-e211-84a5-0019b9e6b500 Regards
  17. If on a simple .net application the chart displays correctly, then the issue is with your project. You are either doing something not allowed by the license type you have, or the license is somehow not updated on your project. Are you doing anything other than a simple .net application? Have you tried cleaning and rebuilding the project? Also, are you accessing the chart from a client or from localhost?
  18. Go to www.mysoftwarefx.com, input your serial number, download the installer and run it on your windows 7 machine. If this is a developer studio license, you will only be able to see the charts from localhost.
  19. Have you transfered your license from your windows XP machine to your windows 7 machine? If not, you need to uninstall the product while connected to the internet and then run the installer on the new machine.
  20. Working as designed. The developer studio license is meant for development only. Once the application is developed and ready to deploy you will need a production server license.
  21. For the license to be included you need to compile the code that instantiates the chart as an exe. If you are using the chart inside a dll, make sure you include a "dummy" chart in the exe.
  22. Try this: chart1.setTypeEx(chart1.getTypeEx | ChartTypeEx.MONOCHROME);
  23. Unfortunatelly that is not possible. You can only copy and paste text.
  24. This forum is for Chart FX for .NET 6.2 Web Forms. In Chart FX 7 you need to create a transparent axis section for the area containing the tickmarks you want to hide. Then, on the section, set the tickmarks visibility to false.
  25. Unfortunately you do not have that level of control in Chart FX 6.2. In 7 you could have acomplished that with axis sections.
×
×
  • Create New...