Jump to content
Software FX Community

rocioZ

Staff
  • Posts

    148
  • Joined

  • Last visited

Everything posted by rocioZ

  1. Chart FX Programmer's Guide and API are available online at the link below: http://support.softwarefx.com/Chart_FX_7_for_Java_Desktop/
  2. Please make sure you are adding the CustomLegendItem inside a !IsPostBack block; as otherwise the CustomLegendItem will be added in every callback request. Please refer to the code below: [C#] if (!IsPostBack){ CustomLegendItem cli = new CustomLegendItem();cli.MarkerShape = MarkerShape.HorizontalLine;cli.Color = Color.Red;cli.Text = "Custom Grid Line" ;Chart1.LegendBox.CustomItems.Add(cli);} Adding all the code that will be executed just once inside that block would be a good practice. I hope this helps.
  3. Hello XTr33m, The behavior you are looking for can be achieved by setting the Style property of the X-axis. Please take a look at the code below: Chart1.AxisX.Style &= ~AxisStyles.BreakZero; I hope this helps.
  4. Hello jpdeslandes, In order to provide you with an accurate answer, could you please let us know whether you are instantiating the chart inside the main executable or wrapping it within a class library (.dll)?
  5. Hello Renato, In order to solve the invalid license 100800, please follow the steps provided in the article below: http://support.softwarefx.com/Chart_FX_Internet_62/article/7621027 I hope it helps.
  6. Hello ozykaboo, The following article provides detailed information on how to upgrade your product to the full version: http://support.softwarefx.com/Chart_FX_7/article/9901024
  7. Hi FP2006, You can insert a newline (\n) character to wrap long text in the title. Take a look at the following sample: TitleDockable t = new TitleDockable (); t.Text = "This title is very very long for the chart control \n This is a bar chart control" ; chart1.Titles.Add(t); I hope it helps. Regards, support.softwarefx.com
  8. Hi dolgorae, Could you please try setting the trust levels of the Framework like this: a) Control Panel ---> Administrative Tools ---> Microsoft .NET Framework 2.0 Configuration. On the left, expand the My Computer tree. Left click on Runtime Security Policy. On the right, click on Adjust Zone Security. c) Make sure that "Make changes to this computer" is checked. Click next. d) Enable full trust for My Computer, Internet, Intranet and Trusted Sites for now. e) Click next, then finish. Additionally, please change the Security Internet Options to: Internet >> Medium-low Local Intranet >> Medium-low Trusted Sites >> Medium-low Restricted Sites >> High Hope this helps.
  9. rocioZ

    Inquiry

    Yes, Blue_Doc. Correct. Chart FX for .NET (for Visual Studio 2003) is Chart FX for .Net 6.2.
  10. rocioZ

    Inquiry

    Hi, Chart FX for .NET 6.2 is available for sale. Please feel free to contact sales department at sales[AT]softwarefx.com. You can review our price list at: http://softwarefx.com/sfxOrder/pricing.aspx
  11. This issue usually occurs when trying to install Chart FX in a multi-core CPU. In Chart FX Internet 5.5, the licensing scheme works as one license per CPU, therefore it may ask for more licenses when using a multi-core CPU since more than one CPU is detected in this kind of processors. You can acquire more additional CPU licenses with no need to upgrade. Please contact our sales department at sales@softwarefx.com and explain them your case. They will be more than glad to analyze your particular case, and help you to get those additional licenses. Please note that Chart FX 5.5 has been decommissioned for quite some time. Because of this decommissioning there are no more software updates or support for this product. Software FX has released many versions of Chart FX after Chart FX Internet 5.5. You can check detailed information of the latest version for COM which is called Chart FX for COM 6.2 at the link below: http://www.softwarefx.com/sfxComProducts/cfxForCOM/
  12. Please contact our support staff directly at support[AT]softwarefx.com requesting for the latest installer compatible with VS2010. Please include your product serial number.
  13. Sujit, Please contact our support staff directly at support[AT]softwarefx.com. They will be more than glad to assist you with the installation. Please include your product serial number as well.
  14. If the system does not have direct access to the Internet, Chart FX installer is not able to reach our web server to validate the license, it is necessary to register the product manually. The recommended option validating the license is to choose the one that says to manual validate the Chart FX license. This will return a challenge code that you will need to take to the web address shown on the installer for validation purposes, and so you can receive the license string needed to complete your installation.
  15. Hi, Please make sure you have the ChartFX70 virtual folder on IIS at the root of your application, and that this folder is mapped to C:\Program Files\Chart FX 7\ChartFX70. Also, this virtual folder needs to have read/write permissions, and the PSS sub-folder needs to be running as an application on IIS and able to execute scripts only. Additionally, please go to the services console (Administrative Tools > Services) and check if PSS service is running. If not, please start it. With or without PSS, are you able to see the chart in your page? Remember that you can contact our support team at support[AT]softwarefx.com for further assistance about this issue. They will be more than glad to help you. Please include your product serial number as well. image.zip
  16. The invalid license (100800) means there is a different between machine information in registry and machine information extracted at runtime. When the product is installed, the license keeps record of machine-specific information such as IP, MAC address, and others. This problem is usually solved by performing a clean installation. If you need further assistance, you can contact our support staff directly at support[AT]softwarefx.com. Remember to include your Product Serial Number/Support Account Number number as well. image.zip
  17. Please check the security permissions. Additionally, you can try setting the trust level of the .NET framework to Full Trust using the following steps: a) Control Panel ---> Administrative Tools ---> Microsoft .NET Framework 2.0 Configuration. On the left, expand the My Computer tree. Left click on Runtime Security Policy. On the right, click on Adjust Zone Security. c) Make sure that "Make changes to this computer" is checked. Click next. d) Enable full trust for My Computer, Internet, Intranet and Trusted Sites for now. e) Click next, then finish.
  18. The invalid license (100800) means there is a different between machine information in registry and machine information extracted at runtime. When the product is installed, the license keeps record of machine-specific information such as IP, MAC address, and others. This problem is usually solved by performing a clean installation.
  19. Please note Chart FX .NET 6.2 was designed for VS2003 but it works with VS2005 as well. Running the application from VS2005 will not work unless you have your application in IIS or having latest Service Pack of Visual Studio installed. The problem is that Visual Studio 2005 has its own web server. Not IIS. When you run a webapp in VS2005, it runs on the internal web server. There are two ways to make this work: 1) Go to the IIS, and convert your application to run as application and then access it without the port (in this case http://localhost/YourApplication/Default.aspx). or 2) If the latest service pack of Visual Studio is installed. You could create a ChartFX62 folder inside the project, and a temp folder inside ChartFX62. Then, change the project's Virtual Path's to "/". Note that if the Virtual Path property cannot be found it is because the latest service pack for Visual Studio 2005 is not installed.
  20. Could you please let us know which version of Chart FX 7 you are currently using? Remember that you can contact our support team at support[AT]softwarefx.com for further assistance about this issue. They will be more than glad to help you. Please include your product serial number as well. Regards.
  21. Please follow next steps to see the control added to your Visual Studio toolbox: 1. Right click on the Toolbox and select
  22. This problem (CFX61B0-3) usually happens when the temp folder is not automatically created in your site. Please make sure the temp folder exists on your site. Please note that the ChartFX70 folder must contain three folders: Download, PSS and Temp. Sometimes the temp folder is not there, so you just need to manually create it in the chartfx70 folder. The PSS virtual folder needs to be running as an application on IIS and able to execute scripts only. The entire ChartFX70 virtual folder needs to have read/write permissions.
  23. To integrate Grid FX in your webform, simply select the Grid icon in the VS toolbar and drop & drag a Grid onto your form. As soon as this is done, Grid FX will expose the Grid FX Smart Tag Wizard. I strongly recommend you to take a look at the Resource Center that comes with the installation of Grid FX.
  24. Please send an email to support[AT]softwarefx[DOT]com requesting for the installer. They will be more than glad to provide it to you.
×
×
  • Create New...