T O P I C R E V I E W |
bhairavm |
Posted - 18 Aug 2008 : 00:56:06 We are trying to display Lot# on SPC chart X axis. Is there a way to display string on X axis of the chart where counter (1,2,3....) etc or Date/Time is displayed.
Any prompt help into this will be appreciated.
We tried to put String (Lot#) that is applicable to each datapoint read from the database and plotted on SPC chart on X axis but we werent able to do that.
Bhairav Mehta |
1 L A T E S T R E P L I E S (Newest First) |
quinncurtis |
Posted - 18 Aug 2008 : 09:06:53 You can't add the word "Lot #" as part of the x-axis label, i.e. "Lot #2". You can add an x-axis title, immediately below the x-axis labels, that says "Lot #". First set the string value, then enable the particular charts XAxisTitle, because it is disabled by default.
primaryChart.getXAxisTitle().setTextString( "Lot #"); primaryChart.getXAxisTitle().setChartObjEnable(ChartConstants.OBJECT_ENABLE);
secondaryChart.getXAxisTitle().setTextString( "Lot #"); secondaryChart.getXAxisTitle().setChartObjEnable(ChartConstants.OBJECT_ENABLE); |
|
|