Jump to content
Software FX Community

timcyberbanjo

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by timcyberbanjo

  1. Hi,

    I have a licenced copy of Chart FX 7. Something strange seems to have happened of late. The chartFX components that would always appear in my Visual Studio 2005 Toolbox no longer appear? I can't think of anything that I have specifically done to remove them and they were there a few months back.

    I have a visual studio (2005) web project that still has the Chart FX objects on the web forms that I can see, but there is nothing about ChartFX in the toolbox.

    Is there something I need to run to activate the ChartFX tools?

     

     

    Thankyou

  2. HiI am new to chartFX 7.0 but have used 6.2.

    In version 6.2, I would get the data from the database and then post process it to put it in the format I need to populate the chart. It would be held in an array. I then do this sort of thing

     

    Chart1.OpenData(SoftwareFX.ChartFX.COD.Values, 1, UBound(a))

    For i = 0 To UBound©

    Chart1.Value(0, i) = (c(i).Plant_MetalMassVariation)

    Chart1.Value(1, i) = (c(i).Line2_MetalMassVariation)

    Chart1.Value(2, i) = (c(i).Line3_MetalMassVariation)

    Chart1.Value(3, i) = (c(i).Line4_MetalMassVariation)

    Chart1.AxisX.Label(i) = (c(i).TapDate)

    Chart1.AxisX.Label(i) = Format((c(i).TapDate), "dd-MMM")

    Next i

    Chart1.CloseData(SoftwareFX.ChartFX.COD.Values)

    I am trying to find an example of doing the same sorth of thing in 7.0, but have not had any luck so far. 

    Can you point me in the right direction?

     

     

     

     

     

×
×
  • Create New...