I’ve got this basic code.
<chart lowerLimit='0' upperLimit='100' caption='Revenue' subcaption='US $ (1,000s)' numberPrefix='$' numberSuffix='K' showValue='1' >
<colorRange>
<color minValue='0' maxValue='50' color='A6A6A6'/>
<color minValue='50' maxValue='75' color='CCCCCC'/>
<color minValue='75' maxValue='100' color='E1E1E1'/>
</colorRange>
<value>78.9</value>
<target>80</target>
</chart>
it’s used from fusionwidgets and there’s no documentation on how to write this in PHP.
can anybody advise?
There is complete example with php.net/XMLWriter to produce exactly the same XML output like you posted.