Quinn-Curtis Forums
Quinn-Curtis Forums
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Tools for Microsoft .Net
 SPC Control Chart Tools for .Net
 Pareto Chart cumulative percentage
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

chrism

USA
3 Posts

Posted - 11 Apr 2013 :  10:34:43  Show Profile  Reply with Quote
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

quinncurtis

1586 Posts

Posted - 11 Apr 2013 :  10:59:29  Show Profile  Reply with Quote
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();
}
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Quinn-Curtis Forums © 2000-2018 Quinn-Curtis, Inc. Go To Top Of Page
Powered By: Snitz Forums 2000 Version 3.4.07