Quinn-Curtis Forums
Quinn-Curtis Forums
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Tools for Microsoft .Net
 SPC Control Chart Tools for .Net
 Changing the color of controllimit filled areas

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
quahys Posted - 27 Sep 2013 : 22:46:00
Hi. Is there a way to change the color of filled areas between control limits? For example, beyond 3-sigma I would like to have red color and yellow color in between 3-sigma and 2-sigma.

Besides that, Is it possible to display another 2 lines along x-axis of the chart to indicate the max and min sample values for each XBar chart's subgroup?
1   L A T E S T    R E P L I E S    (Newest First)
quinncurtis Posted - 28 Sep 2013 : 09:20:24
The area outside of the 3-sigma limits is the PlotBackground color. The area between 2- and 3-sigma is zone 0. Make these two calls before any limits are defined.

            this.PrimaryChart.SetZoneColor(0, Color.Yellow);
            this.PrimaryChart.PlotBackground.SetColor(Color.Red);


As in:

            this.PrimaryChart.SetZoneColor(0, Color.Yellow);
            this.PrimaryChart.PlotBackground.SetColor(Color.Red);

            // initial limits, replaced with auto-calculated values
            double ll = 74, hh = 76, target = 75;
            // limitcheck = false means to only check alarms at +-3 sigma limits, not other limits, even though they are displayed.
            bool limitcheck = false;
            this.PrimaryChart.Add3SigmaControlLimits(target, ll, hh, limitcheck);
            this.PrimaryChart.ControlLimitLineFillMode = true;



Sorry, there is no option in the software to display min and max lines for the values of each sample subgroup.

Quinn-Curtis Forums © 2000-2018 Quinn-Curtis, Inc. Go To Top Of Page
Powered By: Snitz Forums 2000 Version 3.4.07