Jump to content
Software FX Community

AndreG

Staff
  • Posts

    333
  • Joined

  • Last visited

Everything posted by AndreG

  1. Would setting the axis color to white be a solution for you? chart1.getAxisY().setGridlines(true);chart1.getAxisY().getLine().setColor(java.awt.Color.white);chart1.getAxisY().setTickMark(TickMark.NONE);chart1.setBackColor(java.awt.Color.white);
  2. I have found some documentation on this process. I hope it helps.
  3. I have found your email inside our spam folder. I will analyze your config file and get back to you via email. For future reference, if you do not receive a confirmation next time you contact support, please try again from a different email address.
  4. I was not able to find your support incident. Did you receive and automated confirmation from us? Did that contain an incident ID?
  5. Try the following. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><%@ Register Assembly="ChartFX.WebForms" Namespace="ChartFX.WebForms" TagPrefix="chartfx7" %><%@ Register Assembly="ChartFX.WebForms.Adornments" Namespace="ChartFX.WebForms.Adornments" TagPrefix="chartfxadornments" %><%@ Register Assembly="ChartFX.WebForms" Namespace="ChartFX.WebForms.Galleries" TagPrefix="chartfx7galleries" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>Untitled Page</title> <script lang="JavaScript" for="Chart1" event="MouseDoubleClick(obj, args)"> if(args.HitType == 4) alert('Point ' + args.Point + ' of Series ' + args.Series + ' was clicked.'); </script></head><body> <form id="form1" runat="server"> <chartfx7:Chart ID="Chart1" runat="server" RenderFormat=".NET"> <Series> <chartfx7:SeriesAttributes /> <chartfx7:SeriesAttributes /> <chartfx7:SeriesAttributes /> </Series> </chartfx7:Chart> </form></body></html> Here is a list of the HitTypes in a chart. None = 0, Background = 1, InsideArea = 2, Between = 3, Point = 4, Axis = 5, Title = 6, CustomGridLine = 7, Drag = 8, Crosshair = 9, Zoom = 10, Scroll = 11, LegendBox = 12, DataGrid = 13, Other = 14, AxisSection = 15,
  6. Unfortunately that line is part of the point, it's color cannot be changed (or kept from changing) independently from the point.
  7. The wrapper was created to convert Chart FX for .NET 6.2 to Chart FX 7. Both .NET products. Chart FX 4 was a COM product. Are you sure you have Chart FX 4 code?
  8. AndreG

    Chartfx License

    I apologize for the confusion. Someone from support will contact you soon to help you resolve your issue.
  9. Chart FX 7 is not backward compatible with Chart FX 4. I am afraid you will need to translate your code. The product does come with documentation and tons of sample applications.
  10. AndreG

    Chartfx License

    We offer free support for installation or server setup issues. Please email your post to support [at] softwarefx.com
  11. I think this should work for you. chart .getData().set(0, 3, (Chart.HIDDEN));
  12. How are you rendering the chart? As .NET or as an image?
  13. I would like to investigate this issue further. Could you please send an email to support [at] softwarefx.com with the web.config file that was generated after you installed the product attached? Please add Attn: Andre in the subject line.
  14. You are looking for the AllowEdit property. http://support.softwarefx.com/OnlineDoc/CfxNet62//WinAPI/ChartCore_AllowEdit.htm
  15. If you have a DLL written using Chart FX 6.0, it does not have the license embedded in it anyways. The Chart FX license will only be embedded if the project is compile as EXE. Now, Chart FX 7.0 is a completely different product (different API). So the license would not be backwards compatible. To use a DLL that was created by you using Chart FX 6.0 you would need to have Chart FX 6.0 (or Chart FX 6.2) installed on your machine. I am not 100% sure on what you are trying to do, but I hope my answer helped. Let me know otherwise, explaining further your scenario.
  16. Please note that when you export a chart as a stream, you will get the image of the chart, the IMG tag and the IMG MAP. Therefore the only interactivity possible are things that can be embedded in an IMG MAP (tooltips and links). This will not change over the next Service Pack release. What we are taking care of right now is to disable the interactivity for you when exporting the chart, so you will not get the NPE. Maybe if you explained a little more of what you are trying to do (why are you exporting the chart) we can think of something that would work for you.
  17. The developers have already replied. The chart is trying to export an interactive chart, which is not supported. It will be fixed on the next release, but for now the workaround is very simple. Just add this to your code. chart1.getImageSettings().setInteractive(false);
  18. Hi! I have reproduced the issue and reported as a bug. I will let you know when I hear from the developers.
  19. I believe the CancelZoom method was supposed to be the right method for you. I have also tried it on my side and confirmed it to not be working. I have since reported as a bug, I will reply here when I have more details.
  20. We are currently working on this. We expect to have it ready before the release of our next Service Pack. There are no release dates for the Service Pack yet, but we are pretty close to releasing it.
  21. chart1.Data.Series = 1;chart1.Data.Points = 4;Random r = new Random();for (int i = 0; i < chart1.Data.Points; i++){ for (int j = 0; j < chart1.Data.Series; j++) { chart1.Data[j, i] = r.Next() * 80; }}chart1.Gallery = Gallery.Pie;chart1.Points[0].Color = Color.LightGray;
  22. It seems your post did not really work out... If you want to get a reply, please repost.
  23. You can upgrade your Chart FX for .NET 6.2 license to a Chart FX 7 license for a fee. Note that that would invalidate your Chart FX for .NET 6.2 license, so if you need both you would have to purchase the Chart FX 7 license separately. Here is a link where you can see the prices. http://www.softwarefx.com/SFXOrder/pricing.aspx
  24. I am currently separating each sample from the web page. They should be available for download individually soon.
  25. To roll back your Chart FX version all you need to do is replace the dlls and re-reference them in your project. It might also be necessary to erase any mentions of ChartFX inside the licenses.licx file. Remember to backup the whole thing just in case. Now, im not clear whether or not you have the dlls on the version you need. If you contact support [at] softwarefx.com they might be able to send you those in case you dont have them.
×
×
  • Create New...