Jump to content
Software FX Community

CarlosAC

Members
  • Posts

    204
  • Joined

  • Last visited

Posts posted by CarlosAC

  1. Hi gopikrish

    You can try adding some FieldMap object to the DataSourceSettings.  Those objects allows you to configure how Chart FX will store the data provided by the DataProvider.  Please check the following code:

    chart1.DataSourceSettings.Fields.Add(new FieldMap("Date",FieldUsage.XValue));   chart1.DataSourceSettings.Fields.Add(new FieldMap("High",FieldUsage.Value));   chart1.DataSourceSettings.Fields.Add(new FieldMap("Low",FieldUsage.Value));   chart1.DataSourceSettings.Fields.Add(new FieldMap("Closed",FieldUsage.Value));   chart1.DataSource = ds.Tables[0]; 

    More information in Chart FX Samples & Resource Center >>> API Reference >>> Chart FX WebForms >>> DataSourceSetttings Class >>> Properties >>> Fields.

    Carlos Chaves

     

  2. [color= #1f497d; mso-ansi-language: EN-US" lang=EN-US>Hi thanhtung<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

     

    In the samples the chart is added to a <div> tag.  You can remove the chart and the code related to this chart.  Then, you can add you own static image.

     

    Please note that, in the sample

  3. Hi Iain Pattison

    Please contact our Support team via e-mail at support{at}softwarefx{dot}com.  Please include a complete repro case we can work with.

    We have recently found a similar issue with the 3D Pie, so current issue can be included as part as the report to our development team.

    Carlos Chaves.

     

  4. Hi ryanics

    If you want to set the Y scale on Chart FX 7, please try using the following code:

    Chart1.AxisY.Min = 0;Chart1.AxisY.Max = 100;

    Maybe it is trying to set the steps of the tick marks and labels.  If so, please try using the following code:

    Chart1.AxisY.Step = 20;

    -- Carlos Chaves

     

  5. Hi AlexeyRedko

    It seems the license is not being added to the executable file.  Please contact Software FX Support at suppot[at]softwarefx[dot]com for more information.  Please include (when contacting Support) your product serial number.

    Carlos Chaves

  6. Hi pclem<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

     

    Please contact Software FX Support at suppot[at]softwarefxp[dot]com in order to receive the steps you need to follow in order to fix the issue you are facing.

     

    When contacting our support department, please include a reference to current post and your product serial number.

     

    Carlos Chaves

×
×
  • Create New...