
AndreG
Staff-
Content Count
333 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout AndreG
-
Rank
Advanced Member
Profile Information
-
Gender
Not Telling
-
This forum is for Chart FX for Reporting Services. Are you sure you have posted under the right forum?
-
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.
-
This forum is for Gauges. Can you post a screenshot of what you mean?
-
Hello happyid, Attached is a sample on how to use custom indicators. Regards,
-
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
-
Yes, there is a property in AxisSection for that (Text): http://support.softwarefx.com/Chart_FX_7/api#web_htmls/axissection_text.htm
-
Great. If you ever update the dlls (using a hotfix or service pack) do not forget to update that one manually as well.
-
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.
-
Is it possible to plot date values as separate entries in the x-axis?
AndreG replied to timlin's topic in Windows Forms
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; -
Is it possible to plot date values as separate entries in the x-axis?
AndreG replied to timlin's topic in Windows Forms
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)? -
Problem with ChartFX when Regional Settings are Thai(land)
AndreG replied to chenc's topic in Windows Forms
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, -
Problem with ChartFX when Regional Settings are Thai(land)
AndreG replied to chenc's topic in Windows Forms
Hello Chen, What version of the dlls are you currently using (7.0.XXXX)? Regards, Andre -
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.
-
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/
-
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.