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
 Frequency Histogram X-Axis Scale

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 - 24 Apr 2013 : 16:32:04


Hi,
I am setting the X-Axis start and end values like so:

Me.XGrid.ChartObjScale.SetScaleX(-10, 10)

However, the histogram is showing as below with a scale of -15 to 15.

Does the chart expand the X-Axis on its own to display the full normal curve?
Or could there be another reason the chart's X-Axis is not being set to be from -10 to 10?

Thanks.

1   L A T E S T    R E P L I E S    (Newest First)
quinncurtis Posted - 25 Apr 2013 : 08:46:43
The method BuildChart auto-scales the coordinate system to include all of the data added to the chart, regardless of any previous settings. You can however, change the coordinate system scale after your call BuildChart. You must also call a group of auto-axis routines after you do that to make sure the x- and y-axes adjust to the new scale. Last you call UpdateDraw to force a redraw of the chart.


.
.
.
Me.BuildChart()  
      
Me.CoordinateSystem.SetScaleX(-10, 10)
Me.XAxis.CalcAutoAxis()
Me.YAxis.CalcAutoAxis()
Me.XAxisLab.CalcAutoAxisLabels()
Me.YAxisLab.CalcAutoAxisLabels()
Me.UpdateDraw()

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