T O P I C R E V I E W |
seh-a |
Posted - 04 Dec 2012 : 11:13:29 I am trying to use the Moving Average chart in my application with some success using the sample code as a guide. I want to turn off some of the header information i.e. part no, chart no, etc. but I want to keep some other information like chart title. However, when I use HEADER_STRINGS_LEVEL1, the chart title line still have part no. and chart no. which are not applicable for my application. Is there a way to selectively display items on the headers? |
1 L A T E S T R E P L I E S (Newest First) |
quinncurtis |
Posted - 04 Dec 2012 : 11:26:23 You can just null out the header strings used for the items you don't want.
spcChart.ChartData.PartNumberHeader = ""; spcChart.ChartData.ChartNumberHeader = "";
This applies to all of the spc charts, not just the moving average variant. |
|
|