I have a graph.class that I am using to draw graphs, and I can't figure out how to graph values that are between .001 - .100, is this possible?
Sure, if values are too small, you make them BIGGER. :-)
If you want to display values from 0.001 to 0.1, just multiply them by 1000 to get a value that you can graph.
Remember, a graph is a representation of values, not the values themselves!
I have tried this before and it doesn't help my situation, if I take .035 and times it by 1000 then I have 35, and that is what gets graphed, it uses the 35 as the label. I need the users to see the number as .03%, not 3%, not 35%. I can change the names of the labels but the graph is based on the largest number so my labels are not accurate.
sigh then change the code so it only multiplies for the graph and not for the labels.