sanjshah

Members
  • Content count

    13
  • Joined

  • Last visited

Posts posted by sanjshah


  1. Hi,

     

    I have an XML file in the following format, is it possible to use this as the datasource for Column3D chart, or does ths need to be in a certain format?

     

     

    <?xml version="1.0" encoding="ISO-8859-1"?>
    <OutputInfo>
    <record>
    <services>Type 1</services>
    <complete>21 </complete>
    <remaining>60 </remaining>
    </record>
    <record>
    <services>Type 3</services>
    <complete>10 </complete>
    <remaining>40 </remaining>
    </record>
    <record>
    <services>Type 4</services>
    <complete>20 </complete>
    <remaining>80 </remaining>
    </record>
    <record>
    <services>Type 5</services>
    <complete>30 </complete>
    <remaining>70 </remaining>
    </record>
    </OutputInfo>
    

     

    Thanks,


  2. Hi,

    2 questions, I am using the ScrollLine2D chart:

    is it possible to add text to the background even at the top?

    I am using dates as my x-series from an xml file in the form of :

    <record>
    <date>10/06/10</date>
    <target>0 </target>
    <actual>0 </actual>
    <ta>0 </ta>
    <aa>0 </aa>
    <tb>0 </tb>
    <ab>0 </ab>
    </record>
    <record>
    <date>17/06/10</date>
    <target>11 </target>
    <actual>0 </actual>
    <ta>11 </ta>
    <aa>0 </aa>
    <tb>0 </tb>
    <ab>0 </ab>
    </record>
    <record>
    <date>24/06/10</date>
    <target>18 </target>
    <actual>0 </actual>
    <ta>18 </ta>
    <aa>0 </aa>
    <tb>0 </tb>.............
    

    Is it possible to hightlight (a vertical line) showing todays date?

    Thanks,

    Sanjay


  3. Thanks I tried that but the values displays:

    <?xml vesion="1.0" encoding="ISO-8859-1"?>

    <chart caption = 'Handover Status ' pieYscale='55' showPercentageInLabel ='0' enableSmartLabels='0 ' showLabels='0 ' showValues='0 ' pieRadius ='100'>

    <set value='0' color='B3FFB3' label = 'Completed' enableSmartLabels='0'/>

    <set value='298' color='FF7979' label = 'Outstanding' enableSmartLabels='0'/>

    </chart>

    I would like to only show the information when the user mouseover the relevant segment.

    Thanks


  4. Hi,

    I have tried to hide the labels on a pie chart but cannot get this to work:

    Response.Write("<chart caption = '" & title &" ' &pieYscale='"& 45 & "' showPercentageInLabel ='"& 0 &" ' &showLabels='"& 0 &" ' &showValues='"& 0 &" ' &pieRadius ='"& 100 &"'>" & vbCrLf)

    Any ideas?

    Thanks