Number Scaling |
FusionCharts v3 introduces the concept of number scaling. Number scaling lets you shorten the numbers on charts using commonly used scales (like K,M etc.). You can define your own scales for numbers and then apply it to all numbers on the chart. |
Basic Example |
Let's start with the most basic example which is already defined in FusionCharts - thousands (K) and millions (M) scale. By default, if your numbers on the chart are greater than 1000, FusionCharts scales them to K (Thousands) or M (Millions). For example, if you plot a chart with data as 12500, 13400 and 13300, you'll see the following chart: |
![]() |
As you can see above, FusionCharts has scaled the numbers down to K. By default, FusionCharts has the K,M (1000,1000) scaling defined for each chart. If you do not want this scaling to be applied by default, you can set: |
You can, however, change it to anything you wish. Let's see it in the next example. |
Adding billions to default scaling |
FusionCharts, by default, has 1000,1000 (K,M) scaling defined for all charts. It doesn't have the scaling for billions defined. Let's modify the number scaling to add billion so that the final scale looks like 1000,1000,1000 (K,M,B). This scale, in human terms, would look something as under: 1000 = 1 K Now, to convert this scale into FusionCharts XML/JSON format, you'll have to do the following:
When you now view a chart containing data in billions, you'll see as under. Note that the chart now contains figure both in millions and billions. |
![]() |
The XML/JSON for this chart can be listed as under: <chart numberScaleValue='1000,1000,1000' numberScaleUnit='K,M,B' numberPrefix='$'> <set label='John' value='986000000' /> <set label='Mary' value='3134000000' /> <set label='Andy' value='3245000000' /> </chart> { |
In case of dual y-axis charts, to apply this scaling to the secondary axis, you would write the following XML/JSON (note the s prefix before each attribute indicating secondary axis). |
<chart sFormatNumberScale='1' sNumberScaleValue='1000,1000,1000' sNumberScaleUnit='K,M,B' sNumberPrefix='$'> <set label='John' value='986000000' /> <set label='Mary' value='3134000000' /> <set label='Andy' value='3245000000' /> </chart> { |
Another Example - Putting time in scale |
Let's consider another example where we intend to plot time related figures on the chart. Say we're plotting a chart which indicates the time taken by a list of automated processes. Each process in the list can take time ranging from a few seconds to few days. And we've the data for each process in seconds itself. Now, if we were to show all the data on the chart in seconds only, it won't appear too legible. What we can do is build a scale indicating time and then specify it to the chart. This scale, in human terms, would look something as under: 60 seconds = 1 minute Now, to convert this scale into FusionCharts XML/JSON format, you'll have to do it as under:
The entire data looks as under: <chart defaultNumberScale='s' numberScaleValue='60,60,24,7' numberScaleUnit='min,hr,day,wk'> <set label='A' value='38' /> <set label='B' value='150' /> <set label='C' value='11050' /> <set label='D' value='334345' /> <set label='E' value='1334345' /> </chart> { |
When you now view the chart, you'll see that all the data has been automatically scaled to the best value. Like: 38 was converted to 38s |
![]() |
In case of dual y-axis charts, to apply this scaling to the secondary axis, you would write the following XML/JSON (note the s prefix before each attribute indicating secondary axis). |
<chart sFormatNumberScale='1' sDefaultNumberScale='s' sNumberScaleValue='60,60,24,7' sNumberScaleUnit='min,hr,day,wk'> <set label='A' value='38' /> <set label='B' value='150' /> <set label='C' value='11050' /> <set label='D' value='334345' /> <set label='E' value='1334345' /> </chart> { |
Storage Size Example |
Take another example, where you're plotting a chart indicating memory usage of a network server. The usage can be from few bits to a few gigabytes. Again, you've all your data in bits - so we can render the range as under: 8 bits = 1 Byte And the XML/JSON can be written as under: |
Similarly, for dual y-axis chart, it would be: |
Length/Distance Example |
Let's consider another length/distance example. The standard length/distance range can be rendered as under (with inches being the default unit): 12 inches = 1 feet So, we can write the XML/JSON as under: |
Similarly, for dual y-axis chart, it would be: |