×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

show exported data as an chart

show exported data as an chart

show exported data as an chart

(OP)
Hello,

Not shure that this is the right palce to post this question.

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

i this case i want to present budget as one bar ant the tow 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? or should i use XML and XSL and post a question in XML forum?

Thanks in advance
//T

RE: show exported data as an chart

For all my charting needs I use FusionCharts : http://www.fusioncharts.com/

I currently still use the free Flash version, but they now have a fully JavaScript only version.

Building impressive graphs from simple XML couldn't be easier!

"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music

RE: show exported data as an chart

Hi Intose,

If you want simple, this is a system I came up with a while back, just scale your data values into the height parameter.
Tweak the width and colours as you wish.

Extend to as many columns and as may stack levels as needed. You can add <title> or <alt> tags in the divs so the user can hover for more info.

CODE

<!doctype html>
<html>
<head>
</head>
<body>



<table cellpadding=5 cellspacing=5 border=0>
<tr>


<!-- First Column -->
<td valign="bottom">
<div style="width:50px; height:400px; background-color:#8888ff;"></div>
</td>
<!-- End of First Column -->



<!-- Second Column -->
<td valign="bottom">
<div style="width:50px; height:100px; background-color:#88eeaa;"></div>
<div style="width:50px; height:270px; background-color:#8800ff;"></div>
</td>
<!-- End of Second Column -->



</tr>
</table>



</body>
</html> 

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close