Jump to content
Software FX Community

AndreG

Staff
  • Posts

    333
  • Joined

  • Last visited

Posts posted by AndreG

  1. Hello Thameur,

     I apologize for the inconvenience. But you acted correctly, the right way to resolve this issue is to contact our support team. I will make sure they reply to you as soon as possible, with the correct dlls.

    Regards, 

  2. Each axis have major and minor grid lines. Here is how to turn them all off:

                chart1.AxisY.Grids.Major.Visible = false;

                chart1.AxisY.Grids.Minor.Visible = false;

                chart1.AxisX.Grids.Major.Visible = false;

                chart1.AxisX.Grids.Minor.Visible = false; 

  3. If you would like help with Chart FX 6.2, please post to the right forum. It is not clear whether you are using COM or .NET, win or web. 

     

    Assuming you are using .net 6.2, windows forms, I can tell you it seems to be working for me. Version 6.2.3188. Here is the code I tried.

     

                int numbOfSeries = 1;

                int numbOfPoints = 5;

                Random rnd = new Random();

                chart1.OpenData(COD.Values, numbOfSeries, numbOfPoints);

                for (int i = 0; i < numbOfSeries; i++) {

                    for (int j = 0; j < numbOfPoints; j++) {

                        chart1.Value[i, j] = rnd.Next(100);

                    }

                }

                chart1.CloseData(COD.Values);

                chart1.Gallery = Gallery.Pie;

                chart1.View3D = true;

                Pie p = (Pie)chart1.GalleryObj;

                p.ExplodingMode = ExplodingMode.All; 

  4. Hello Jan,

     After you install the trial (or the full software) a designer will be copied to  C:\Program Files\cfxjava7servertrial\designer\ (if you are running windows) or an equivalent path. Samples are also included, inside a war file (C:\Program Files\cfxjava7servertrial\war\CfxJava70_samples.war). Also, documetation is available online at http://support.softwarefx.com/Chart_FX_7_for_Java_Server. Hope this helps.

      

  5. I believe some cultures will force the chart to be displayed that way. Can you try changing the culture of your chart?

                    chart1.LegendBox.Style = LegendBoxStyles.Default;

                    Thread.CurrentThread.CurrentUICulture = new CultureInfo("en");

                    Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");

  6. In that case the link in Chart FX works just as any other link. If you remove the chart from the equation, would it work? Replace the whole chart by just one link to one of the drilldowns of the chart. Does that work?

×
×
  • Create New...