Jump to content
Software FX Community

CarlosAC

Members
  • Posts

    204
  • Joined

  • Last visited

Everything posted by CarlosAC

  1. Hi ryanics<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Can you please confirm what is the version you were using previously? What is the action the command does? In the API I cannot found any property or method similar to the code you sent. -- Pipon
  2. Hi Selvam84 Please try using following code: chart1.AxisX.Labels[0] = "Label1"; chart1.AxisX.Labels[1] = "Label2"; -- Pipon
  3. Hi patelajk The chart title will be aligned taken into consideration the chart area, and not the legend box area. This is by design. <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> -- Pipon
  4. Hi tparks69 and nuwan_dammika <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Please contact Software FX Support at support[at]softwarefx.com. They will provide you with simple steps in order to properly install your Chart FX versions. -- Pipon Test.zip
  5. Hi dayiku <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> You can use an additional AxisY for the
  6. Hi Samuel. Please use following code: ChartStrategySectorAnalysis.AllSeries.PointLabels.Format = "%v %%" -- Pipon
  7. Hi Samuel <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> I would like to help you, but at this moment is kind of difficult to understand your issue. Are you using a stacked bar chart? Can you please attach a screenshot of your issue? -- Pipon
  8. Hi jbloomer <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> When you try to add the annotation to the chart, does the chart contains any data? You are removing the data from the chart (this.chart1.ClearData(SoftwareFX.ChartFX.ClearDataFlag.AllData)) and maybe you are attaching the annotation to some specific point. Please verify this. If you continue with issues, please contact Software FX Support at support[at]softwarefx.com. Please attach a simple project showing the issue. -- Pipon
  9. Hi binford <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Software FX has created many samples you can download from our website. There are 1 samples showing what you want to achieve, please select "RealTime Chart" in "Choose sample" area, at top of the page. Please check them at: http://demo.softwarefx.com/chartfx/aspnet/ajaxsamples/. You will have the option to download the source code. If you continue with some kind of issue, please contact Software FX Support at support[at]softwarefx.com. -- Pipon
  10. Hi Jeremy Please check following resources: http://support.softwarefx.com/kb/762/2/021.htm http://support.softwarefx.com/kb/762/1/004.htm If you continue with issues, please contact Software FX Support at support[at]softwarefx.com -- Pipon
  11. Hi Guru <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Software FX has created many samples you can download from our website. There are 2 samples showing what you want to achieve. Please check them at: http://demo.softwarefx.com/chartfx/aspnet/ajaxsamples/. You will have the option to download the source code. -- Pipon
  12. Hi Leo. I have created a sample project showing the same data in 5 different charts (all charts with different chart type). The color in each series is the same in all charts. By default, Chart FX engine will color the first series as blue, the second as green, the third as red, next as yellow, next as light blue and so on
  13. CarlosAC

    ToolTips

    Hi xxmrlnxx Software FX has created many samples you can download from our website. There are 2 samples showing what you want to achieve. Please check them at: http://demo.softwarefx.com/chartfx/aspnet/ajaxsamples/ . You will have the option to download the source code. -- Pipon
  14. Please use following code to see the chart toolbar: chart1.ToolBar.Visible = true;
  15. Hi binukjohn. Unfortunately, Printer.Print() method is not available for Web Forms API, it is just available in the Windows Forms version. You can use the print toolbar item in order to print the chart. I apologize for the inconveniences this may cause.
  16. Hi Sarah. Please use following code: Chart1.Series[0].Color = System.Drawing.Color.FromArgb(150, 100, 50, 0);
  17. Please visit http://demo.softwarefx.com/chartfx/aspnet/ajaxsamples/. In there you will find samples showing different charts rendered on the same page. You can download the source code for each sample. All samples were tested in Firefox and they are working properly. I hope it helps.
  18. Hi wlo413. If you want to get the Main Context Menu, please use following code: Command myCommand = chart1.Commands[CommandId.ContextMenuBack]; Now, regarding to DataGrid, you are confused about Toolbar Command and Chart
  19. Hi wlo413. Even though the command will always be present in the chart , you can hide the item to the end user. Following code show how to remove Pie Gallery item from Gallery Types Menu. Int32 index = chart1.Commands[CommandId.Gallery].SubCommands.IndexOf((Int32)CommandId.Pie); chart1.Commands[CommandId.Gallery].SubCommands.RemoveAt(index); If you want to add it again, you should use following code: chart1.Commands[CommandId.Gallery].SubCommands.Add(CommandId.Pie);
  20. Please provide a sample code and image showing your chart and how is that Chart FX is scaling x-axis improperly.
  21. Hi Tobias. I have confirmed that the issue you are having with a transparent background is by design. Chart FX engine paints the Fonts based on the background color of the chart for a better visualization, in your case the background is a transparency, so the engine does not know what color exists behind the Chart.
  22. Hi mjones. To achieve what you want, you should summarize your data in your SQL transact before passing data to the chart object.
  23. Hi leighshayler. Software FX has already release ChartFX.Silverlight.Client.dll for Silverlight 2.0. It currently runs with latest Microsoft Silverlight 2 release. It comes included in latest Chart FX installer. To get it, please download latest installer or also, you can contact support123@softwarefx.com (remove 123). Please remember to add your product serial number to the e-mail.
  24. Hi Harish. Unfortunately, there is no option to insert an image inside bubbles. This is a limitation of our product. If you create an image and try to use it inside the bubble (chart1.Points[0].Picture = YourImage;) you will face an issue with the image position, because Chart FX engine will position the image as Tiled. Also, if you try to attach images to different points (different image for each point), you will see only one image for all points. Regarding coloring quadrants, this is not supported by Chart FX.
×
×
  • Create New...