Jump to content
Software FX Community

CarlosAC

Members
  • Posts

    204
  • Joined

  • Last visited

Posts 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 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

     

  3. 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

     

  4. 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

  5. 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);

  6. 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.

  7. 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.

  8. 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...