|
I'm using MSChart and I want to enable zoom on the X Axis and once this is zoomed I want the Y Axis to auto zoom into a range appropriate for the data viewable.
Any assistance with the problem would be greatly appreciated!
Thanks
Started by clawson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This works most easily if you those values to reset the min and max Y-axis values on the ChartArea:
With myChartArea .AxisY.Maximum.
To write a little more code to reset the Y-axis scaling appropriately.
|
|
I'm getting my ass kicked trying to plot simple data into a simple chart in excel (2010 beta).
My data is a very simple one:
Value Year ---- 1 1900 5 1902 3 1912
etc. In the chart, I want year to be the X axis and the value to be the Y axis, and have ...
Started by Will on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
If you put the X values in the first column .
A little preparation saves a lot of hassle.
After that, fix up a little your x axis properties, so for X axis.
And select x and y values by hand from series 1 .
|
|
Excellent weekend harvesting some axis @ the lease. 100+ moved in and have been grazing in a big pasture we never hunt.. I set up on the front porch of the old house, Shot 2 Friday night and 2 on Saturday.. Needless to say I cleaned a lot of meat this...
Started by cmeadors on
, 50 posts
by 50 people.
Answer Snippets (Read the full thread at texasbowhunter):
Kidding of course, just....
|
Ask your Facebook Friends
|
In R, how do I make a (bar)plot's y axis labels parallel to the X axis instead of parallel to the Y axis?
Started by Zach on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
0: always parallel to the ....
See ?par :
las numeric in {0,1,2,3}; the style of axis labels.
(0=parallel, 1=all horizontal, 2=all perpendicular to axis, 3=all vertical)
Use par(las=1) .
That represents the style of axis labels.
|
|
How can i change the horizontal and vertical axis of an ezplot of a symbolic equation?
for example an implicit equation of lambda & beta. how MATLAB can understand what i want to be for x axis and what for y axis??
Started by alireza on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To rotate the axes (x-axis becomes y-axis and vice versa)
but i have a main expression of beta.
|
|
How does one find the coordinates halfway on the X and Y axis in a user control or form?
How can I identify the range of the X-axis and the Range of the Y axis on a user control or form?
Started by stormist on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
) / 2));
What does axis mean in your context?
Given the Height and Width properties, you should.
|
|
Hi, i was just wondering if there was a way to get rid of axis values, either the x axis or y axis respectively, in an r-plot graph. I know that axes = false will get rid of the entire axis, but i would only like to get rid of the numering. Thanks so ...
Answer Snippets (Read the full thread at stackoverflow):
For example,
x <- 1:20 y <- runif(20) plot(x, y, axes=FALSE, frame.plot=TRUE) Axis(side=1, labels=FALSE) Axis(side=2, labels=FALSE)
The lattice equivalent is
library(lattice) xyplot(y ~ x, scales....
Using Axis (or axis).
|
|
Instead of the default "boxed" axis style I want to have only the left and bottom axis, i.e.:
+ + | | | | | | ---> | | | | + + +
This should be easy, but I can't find the necessary options in the docs.
Answer Snippets (Read the full thread at stackoverflow):
With plt.axes.
Illustrations) you could also use this quick workaround:
Make the axis invisible (e.g.
|
|
Is AXIS or CFX necessary for Java web services? Can it be all done via the JSDK (1.6)?
Answer Snippets (Read the full thread at stackoverflow):
As an alternative to Axis.
Something like AXIS, CXF, or the Java EE (GlassFish) download from Sun.
Although Axis2 is the most popular framework.
Is AXIS or CFX necessary for Java web services?
No.
|
|
I return a chart image (with axis x and y) to the browser created my matplotlit. Now I want to show the axis values when there is mouseover event.
Started by Vishal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
When I did ....
Here's a solution using jQuery:
$('#myChart').mousemove(function(e){ var x = e.pageX - this.offsetLeft; var y = e.pageY - this.offsetTop; // Do something with x and y; });
See http://docs.jquery.com/Tutorials:Mouse_Position to learn more .
|