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
 Pareto Chart cumulative percentage

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
chrism Posted - 11 Apr 2013 : 10:34:43
Hello,

Ive just started using the SPC Charting Tools for .NET. How do I get the Pareto Chart to display the cumulative percentage next to each LineMarkerPlot like in the documentation?

I want the 45%, 63%, 77%, etc. which is shown in this screenshot:
http://i.imgur.com/KBR3pxf.jpg


This doesnt seem to be the default behavior and I havent been able to find it in the documentation or through IntelliSense.

Thanks,
Chris
1   L A T E S T    R E P L I E S    (Newest First)
quinncurtis Posted - 11 Apr 2013 : 10:59:29
Set the ParetoChart.LineMarkerPlot.ShowDataValue to true, as in the example below.

void InitializeChart()
{
	// add Pareto chart categories, values and strings
	this.AddCategoryItem(5, "Torn");
	this.AddCategoryItem(7, "Not Enough\nComponent");
	this.AddCategoryItem(2, "Others");
	this.AddCategoryItem(11, "Poor Mix");
	this.AddCategoryItem(27, "Holes");
	this.AddCategoryItem(8, "Stains");
	this.MainTitle.TextString = "Pareto Diagram of Defects";

        this.LineMarkerPlot.ShowDatapointValue = true;

	this.BuildChart();
}

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