This example illustrates how to control the axis tick density in auto-scaling.
In auto-scaling, ChartDirector will automatically choose an appropriate tick spacing for the axis.
In some special cases, you may want to use a different tick spacing. The
Axis.setTickDensity method can be used to specify the desired distance between two ticks.
Note that the actual tick spacing chosen by ChartDirector may not be equal to the given desired tick density. It is because ChartDirector may have other constraints when choosing the ticks. For example, the axis may need to contain an integral number of ticks (depends on
Axis.setRounding set up), the ticks and axis range should be neat numbers, etc. ChartDirector may use a tick spacing that is larger than suggested, but never smaller.
In this example, one of the charts is drawn using the default tick spacing. The other chart is drawn using a desired tick spacing of 10 pixels. Note that the actual tick spacing is slightly larger than 10 pixels.
[The following project is available in "cppdemo/ticks".]
#include "chartdir.h"
void createChart(int img, const char *filename)
{
//The data for the chart
double data[] = {100, 125, 265, 147, 67, 105};
//Create a XYChart object of size 250 x 250 pixels
XYChart *c = new XYChart(250, 250);
//Set the plot area at (27, 25) and of size 200 x 200 pixels
c->setPlotArea(27, 25, 200, 200);
if (img == 1) {
//High tick density, uses 10 pixels as tick spacing
c->addTitle("Tick Density = 10 pixels");
c->yAxis()->setTickDensity(10);
} else {
//Normal tick density, just use the default setting
c->addTitle("Default Tick Density");
}
//Add a color bar layer using the given data. Use a 1 pixel 3D border for
//the bars.
c->addBarLayer(DoubleArray(data, sizeof(data)/sizeof(*data)), IntArray(0, 0)
)->setBorderColor(-1, 1);
//output the chart
c->makeChart(filename);
//free up resources
delete c;
}
int main(int argc, char *argv[]) {
createChart(0, "ticks0.png");
createChart(1, "ticks1.png");
return 0;
}
|
© 2003 Advanced Software Engineering Limited. All rights reserved.