I'm trying to visualize computer performance data using Java Swing and JFreeChart. On one chart I want to show CPU load (%) and user memory by some process. So, the possible values for CPU are 0..100, but for memory: from 10KB (10*1024b) to 500MB (500*1024*1024b), the difference is big.
What is the best way to present that data? Thank you!