Author |
Topic  |
|
Bill Rokos
26 Posts |
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. |
|
quinncurtis
1586 Posts |
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;
|
 |
|
Bill Rokos
26 Posts |
Posted - 20 Jun 2008 : 13:49:04
|
Perfect, thanks. |
 |
|
sakamali
Turkey
33 Posts |
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. |
 |
|
quinncurtis
1586 Posts |
Posted - 12 Jun 2013 : 08:40:37
|
this.ChartData.ProcessCapabilityDecimalPrecision = 2; // C#
or
Me.ChartData.ProcessCapabilityDecimalPrecision = 2 ' VB |
 |
|
sakamali
Turkey
33 Posts |
Posted - 12 Jun 2013 : 09:14:13
|
Thanks a lot. |
 |
|
|
Topic  |
|
|
|