|
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.
|
|
Ok...so here is the problem.
I have a CSS sprite image made up of ten(10) 25px x 25px icons laid out horizontally - thus resulting in a sprite image of 250px width.
I am using these 25x25 images as thumbnails. I'm looking to have an opacity of 30% on ...
Started by Mo Boho on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
A { display: block; float: left; width: 25px; height: 25px; background: url("test.jpg") 0 -25px browsers */ filter: alpha(opacity = 30); /* for IE */ display: block; float: left; width: 25px; height; width: 25px; height: 25px; background....
|
|
I'd like the X and Y axes of my Excel charts to have the same scale on the screen, because I'm plotting geographical data. A 1km by 1km square should look like a square, not like a rectangle, i.e. no squishing of the map in one or the other direction....
Started by JF on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The following: Select the 'Plot Area' of the chart and then manually set the height and width of the plot.
|
Ask your Facebook Friends
|
Proble while setting minimum value on Y axis. Proble while setting minimum value on Y axis.
Hello
I have a stacked bar chart that display percentage like that :
DA1.jpg
I have very little vaule on top so, I want to show it by moving my minimum value. ...
Started by feanor91 on
, 10 posts
by 3 people.
Answer Snippets (Read the full thread at sencha):
Maximum values only sets the range of the Y-axis, but you seem to suggest that it will affect the data: true, position: 'left', fields : 'data1', title: 'Y-axis', minimum: 50, adjustMinimumByMajorUnit: 0','data2'], title: ....
|
|
On Tue, 30 Dec 2008 20:51:04 +0000 (UTC), "Et'o Pat" <patmbom@hotmail.com
I have two sets of data of different scales. From which I try draw a double bar chart. Because of the problem of differents scales, only one bar can be seen in the figure...
Started by Et'o Pat on
, 6 posts
by 2 people.
Answer Snippets (Read the full thread at omgili):
:
"Can you help me to draw a multi-bar with the same X-axis and two-Y axis "
If x1 and per overlap the calls to BAR as anonymous
functions, and specify the width parameter to make the bars narrower.
|
|
I'm creating a bar chart with matplotlib-0.91 (for the first time) but the y axis labels are being cut off. If I increase the width of the figure enough they eventually show up completely but then the output is not the correct size.
Any way to deal with...
Started by the empirical programmer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Take a look at subplots_adjust , or just use axes ([left,bottom... .
Ax.legend(loc=0, prop=fontprop)
For the bar width, if your using pyplot.bar it looks like you can play with the width attribute.
<main plotting code>.
YaxisLabel').
|
|
So I have a background image for my content on a site and was wondering if there was a way to make the background repeat on the y axis when content starts to overflow. Here is what it looks like: http://ithacawebdesigners.com/temp_data/wildfirewp/
Thanks...
Started by Davey on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Around line 260:
#content .page,#content .attachment,.postcontent { height:500px; width:720px; margin-top.
|
|
Hello,
i have two coordinates on a 2d plane in 3d space, and am trying to rotate one coordinate (a vector) to face the other coordinate. my vertical axis is the y-axis, so if both of the coordinates are located flat on the 2d plane, they would both have...
Started by retoucher on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You're using tan, either....
The vectors in the dot product have to be normalized .
I don't really understand your question (see my comment) but if you're looking for the angle difference in radians between two vectors take the arc cos of their dot product .
|
|
Hi ..., I’m trying implementing crop image with coordinate. but the it doesn’t success if for the coordinate. my code is :
function image_thumb($image_path, $height, $width, $x=0, $y=0) { // Get the CodeIgniter super object $CI =& get_instance(); // Path...
Started by adisembiring on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
$this->, $this->....
" x ".
$this->y_axis; echo '<br /> Destination size' .$this->width .
Be zero $this->x_axis = 0; $this->y_axis = 0; } else { $this->orig_width = $org_w; $this-> " .
|
|
I have a flash cs3 file where I want a mask to move on the y axis (up and down) when the user is scrolling over the navigation area.
In my code, I have:
maskMC.startdrag();
How do I limit the area where the mask will move, then make it return it back ...
Started by Meghan Manders on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, to lock dragging to only the Y axis, you should make the width of your Rectangle equal1) Limiting mask drag to Y axis:
Just use the startDrag's second argument (bounds:Rectangle; )
startDrag(lockCenter....
|