|
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 .
|
|
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.
|
Ask your Facebook Friends
|
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.
|
|
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.
|
|
I've been using pink noise test tones and a RS SPL meter to make some freq plots of my OB speakers. As I've moved the crossover point down from 175Hz to 100Hz and increased the output level on my plate amps to get the best plot, the bass in the sweet ...
Started by mcgsxr on
, 11 posts
by 6 people.
Answer Snippets (Read the full thread at audiocircle):
The response....
Sometimes moving axis of course).
axis rise in bass SPL implies that you have a null at the listening position and you are trying to fill freq to know which axis is creating it, then move the listening spot out of the null.
|
|
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 .
|
|
I downloaded Axis 1.4 ( http://www.nic.funet.fi/pub/mirrors/apache.org/ws/axis/1%5F4/ ) and I wanted to use WSDL2Java, but I didn't find such a file from package, but there are refrences to this file ( http://ws.apache.org/axis/java/user-guide.html#WSDL...
Started by newbie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What I did was, I have taken....
But cant find the wsdl2java file.
The basic,
I encountered the same problem when I tried to use wsdl2java with axis 1.4.
From the doc
You'll find the Axis WSDL-to-Java tool in "org.apache.axis.wsdl.WSDL2Java".
|
|
What are the advantages of using Apache CXF over Apache Axis and vice versa?
Started by Ram on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
But for 90% of the use cases, either will work .
Things that CXF can do that Axis 2 cannot and vice versa.
|