T O P I C R E V I E W |
Bill Rokos |
Posted - 20 Jun 2008 : 12:34:41 I am using...
chartVu.ChartTable.SampleItemTemplate.DecimalPos = 2; (and several other values)
... but my sample values in the table seem stuck on 1 decimal place of precision. Any ideas?
Thanks. |
5 L A T E S T R E P L I E S (Newest First) |
sakamali |
Posted - 12 Jun 2013 : 09:14:13 Thanks a lot. |
quinncurtis |
Posted - 12 Jun 2013 : 08:40:37 this.ChartData.ProcessCapabilityDecimalPrecision = 2; // C#
or
Me.ChartData.ProcessCapabilityDecimalPrecision = 2 ' VB |
sakamali |
Posted - 12 Jun 2013 : 03:24:22 Hi, What can I do for Cp, Cpk, Cpl ... data? So,
I would like to see 0,05 instead of 0,050 0,71 instead of 0,707 0,00 instead of 0,000
Thanks, Regards. |
Bill Rokos |
Posted - 20 Jun 2008 : 13:49:04 Perfect, thanks. |
quinncurtis |
Posted - 20 Jun 2008 : 13:13:58 You can control the decimal precision of the sampled data using
this.ChartData.DefectiveDecimalPrecision = 2;
You can control the decimal precision of the calculated values (Mean, Range, Sum) using
this.ChartData.CalculatedValueDecimalPrecision = 2;
|
|
|