Greetings,
We are using SGWT Enterprise Edition and have a need to control the labels displayed on the x-axis of a Scattered Chart. Specifically, we need to be able to
We have the exact same situation with scatter charts where the x-axis is a date/time and we would like to guarantee that the x-axis labels are placed at arbitrary points (for example every 1 hour or every 2 hours), but again the framework always ends up choosing where to put the labels, and this greatly reduces the presentation quality for our users.
We are using SGWT Enterprise Edition and have a need to control the labels displayed on the x-axis of a Scattered Chart. Specifically, we need to be able to
- Set the start (minimum) value of the Y-axis
- Set the end (maximum) value of the Y-axis
- Set the spacing (delta) for the x-axis label marks (aka tick-marks)
- Xmin = 0 - using setXAxisStartValue
- Xmax = 9 - using setXAxisEndValue
- Ymin = 0 - using setAxisStartValue
- Ymax = 1.5 - using setAxisEndValue
- x-axis label marks at 0, 1, 2, 3, ..., 8,, 9 (i.e. spacing of 1) - we could not find a way to achieve this
- y-axis label marks at 0, 0.25, 0.5, ..., 1.25, 1.5 (i.e. spacing of 0.25) - we could not find a way to achieve this
We have the exact same situation with scatter charts where the x-axis is a date/time and we would like to guarantee that the x-axis labels are placed at arbitrary points (for example every 1 hour or every 2 hours), but again the framework always ends up choosing where to put the labels, and this greatly reduces the presentation quality for our users.
Comment