T O P I C R E V I E W |
DRockWilson |
Posted - 27 Jan 2016 : 08:18:00 What I am trying to do is suppress the y axis label prefix and value (LCL1 = #) for my XBar-R Chart. Ultimately I want to show lines for the Mean and 3 sigmas, but not the y-axis labels, but still want to show both the lines and y-axis labels for the upper and lower spec limits.
My main problem is that everything on the y-axis is overlapping. |
2 L A T E S T R E P L I E S (Newest First) |
DRockWilson |
Posted - 27 Jan 2016 : 10:35:55 Thank you. I had trouble locating the LabelLimit property in the documentation, but this fixed my problem. |
quinncurtis |
Posted - 27 Jan 2016 : 09:35:04 Quite a few of our examples do exactly what you describe. See WERulesVariableControlCharts.XBarRChart and WERulesVariableControlCharts.XBarSigmaChart - see picture 
// Don't show sigma 1 and sigma 2 alarm line labels because graph too crowded this.PrimaryChart.GetControlLimitData(SPCChartObjects.SPC_UPPER_CONTROL_LIMIT_1).LabelLimit = false; this.PrimaryChart.GetControlLimitData(SPCChartObjects.SPC_LOWER_CONTROL_LIMIT_1).LabelLimit = false; this.PrimaryChart.GetControlLimitData(SPCChartObjects.SPC_UPPER_CONTROL_LIMIT_2).LabelLimit = false; this.PrimaryChart.GetControlLimitData(SPCChartObjects.SPC_LOWER_CONTROL_LIMIT_2).LabelLimit = false; |