Hello,
I am about to export data from an ERP system witch will contain 3 values whitch i want to present as an chart.
The values are
Budget
Invoiced
Pending
like this (am new to xml and best practice)
i this case i want to present budget as one bar ant the two other obove each other like this.
thing is that i can do what ever export i need but want it as simple as possible.
Is this possible to use XML and XML styles to get desired result? Could somone point me in right direction?
Thanks in advance
//T
I am about to export data from an ERP system witch will contain 3 values whitch i want to present as an chart.
The values are
Budget
Invoiced
Pending
like this (am new to xml and best practice)
Code:
<Value>
[indent]<Name>Budget</Name>[/indent]
[indent]<Amount>100</Amount>[/indent]
[indent]<ChartSize>100px</ChartSize>[/indent]
</Value>
<Value>
[indent]<Name>Pening Orders</Name>[/indent]
[indent]<Amount>20</Amount>[/indent]
[indent]<ChartSize>20px</ChartSize>[/indent]
</Value>
<Value>
[indent]<Name>Invoiced</Name>[/indent]
[indent]<Amount>60</Amount>[/indent]
[indent]<ChartSize>60px</ChartSize>[/indent]
</Value>
i this case i want to present budget as one bar ant the two other obove each other like this.
thing is that i can do what ever export i need but want it as simple as possible.
Is this possible to use XML and XML styles to get desired result? Could somone point me in right direction?
Thanks in advance
//T