JQuery :: Ann: JqPlot 0.6.2 Released - Features - Rotated Axis Text - Vertical And Horizontal Bar Charts
Jun 1, 2009
jqPlot is an open source plotting plugin for jQuery. The 0.6.2 release adds many new features including:
Rotated axis text. Vertical and horizontal bar charts. Automatic trend line computation. Data point highlighting. Cursor tooltips showing data and grid position. And many other features.
The jqPlot homepage is at [url]
The downloads page is at [url]
The mailing list/Google group is at [url]
jqPlot is built from the ground up as an extensible and plugable plugin. Handling of data, drawing of plot elements, events, virtually everything is handled by a plugin. This means you can enhance or swap out core functionality without touching the core code.
View 1 Replies
ADVERTISEMENT
Jan 4, 2012
Is it possible to scale a div from a central horizontal axis so that it expands top and bottom rather than just 'slideup' or 'slidedown' from the top left hand corner?
View 2 Replies
View Related
Nov 29, 2009
I need to make a very simple text scroller (either vertical or horizontal) using JavaScript.
View 3 Replies
View Related
Apr 12, 2011
I need for a design with vertical and horizontal box type of TAB navigation using Jquery. go see below sample image as i provided.
View 2 Replies
View Related
Aug 17, 2010
What I'd like to do is use some sort of jquery plugin to make an image scroller that has a grid of images and scrolls each row and column horizontally and vertically. I'm a bit overwhelmed though and not sure where to start. I want to use fancybox for opening the image so I was hoping someone could point me towards something that would help with the thumbnail scroller?
View 4 Replies
View Related
Jul 7, 2009
I am using jCarousel and I am getting a weird bug. Basically, jCarousel renders perfect - however for a brief instant the carousel appears vertically and then appears horizontal as it should in IE / FF
View 12 Replies
View Related
Sep 13, 2011
I have created the following page [URL] where I have a number of main links and then sublinks for these. At the moment when a main link is clicked the content scrolls vertically and when a sublink is clicked eg Blue Inner Link 1 the content slides horizontally. how can I update the script so that when I click a main link the content scrolls horizontally and when I click a sublink the content scrolls vertically?
View 1 Replies
View Related
Apr 23, 2009
I can get them both to display but I need to style each one differently I have copied the basic styles and renamed them xx2 and then renamed the ul class to match but it doesn't like it!
View 1 Replies
View Related
Jun 10, 2009
Can I make image vertical or horizontal flip by jQuery?
View 10 Replies
View Related
Nov 16, 2011
I'm wondering how to modifiy the vertical menu of superfish to let the submenu appear horizontal next to the parent menu element:123 3a 3b 3c45I just spent some hours searching on Google andplayed around with the CSSbut could not manage to fix it.
View 1 Replies
View Related
May 7, 2009
I am using both horizontal and vertical tab menu's in a single page. And on click of horizontal tab should select the corresponding vertical tab and along with the data linked to vertical data will be displayed in different div on the page. I am stuck with how to poputale these using jquery.
View 1 Replies
View Related
Nov 18, 2011
I have a script that rotates text and I was wondering if there was a simple way to add 3 circles below the each text that is being rotated.So that the user can then click a different (empty) circle and bring up that text it references?Here is what I have:
Code:
<script language="javascript">
$(document).ready(function(){
$('#testimonials .slide');[code]..........
View 6 Replies
View Related
Nov 24, 2009
I'm currently trying to build a vertical mega menu as all the ones on the net seem to be set up for horizontal menus. I'm struggling a bit on a certian point as I'm not a very strong Javascript user.It places the mega menu under the button but i want it to appear to the side of the button and be flush with the top of it. I have made it appear to the side but I cant seem to make it run flush with the top of the button, it appears at the bottom of the button.The buttons are 142px wide and 28 in height.
View 1 Replies
View Related
Nov 8, 2010
I have a horizontal tabsystem given with this code:
<style>
.tabContainer{ float:left;
width:795px;
margin: 1% 1%;
[Code]....
Is there a way to make these tabs go verically instead? Like turn the text and all?
View 3 Replies
View Related
May 16, 2010
I want the horizontal scroll to be hidden and the vertical scroll shown, how do i do that?
View 2 Replies
View Related
Sep 23, 2010
i'm wondering unknow on making element in html center to browser 'screen.
View 3 Replies
View Related
Aug 20, 2011
Alright so you have the header, horizontal menu, then content below it. The horizontal menu has to expand PUSHING the content down slightly expanding the wrapper. I'm hoping someone can help me out with this because right now it's not even horizontal. When I flip it it all breaks
[Code]...
View 1 Replies
View Related
Dec 3, 2011
I want to use a drop down menu and found a horizontal example from John Resig. But I want to turn it into a vertical menu. How can I do that?
View 2 Replies
View Related
May 7, 2010
i need something simple without much overhead to read plain text (tab separated, columns & rows of data) .. and with the data i need to generate some charts (plot, bar, etc) better be interactive
since javascript doesn't need webserver like php .... setup is simple .. and can be run on any OS. i think it is my best candidate.
i dont know if javascript has any package to do stuff like this. what about interactive graph/chart? is it possible?
View 1 Replies
View Related
Aug 2, 2010
After realizing that htc files only work with Internet Explorer, I have needed to have JavaScript code to suit the two lots of css code below. Please help, I need the code pretty urgently. The code must work with most versions of browsers.
[Code]...
View 1 Replies
View Related
Aug 26, 2010
I am building a gallery for a client w/an admin etc. But visually she would like the images to be slightly rotated but stationary not animated. is there a way to do this with jquery here is a link to a rough draft.[URL]... so basically I want each of the images to be slightly rotated.
View 2 Replies
View Related
Jun 4, 2009
I am after a simple div scroller that scrolls text up/down within a fix sized div, with two scroll buttons that can be set to hover/click, I have found a load that use it for <li> tags or images and scrolls only up by set amount, but I would like this for text etc.
View 6 Replies
View Related
May 2, 2011
Is there anything out there that allows for a diagonal and vertical text capture in javascript or jQuery? I was not successful in finding anything. I have a game similar to word find that I've developed, but I need to be able to capture text vertically and diagonally. Otherwise, the only solution will be for me to do a by-click basis to capture items on the screen. I found the script below which handles horizontal capturing:
<script type="text/javascript">
document.body.style.cursor="url(3DArrow.cur), crosshair" ;
if (!window.Kolich){
Kolich = {};
} Kolich.Selector = {};
Kolich.Selector.getSelected = function(){
var t = '';
if (window.getSelection){
t = window.getSelection();
}else if(document.getSelection){
t = document.getSelection();
}else if(document.selection){
t = document.selection.createRange().text;
}return t;
}Kolich.Selector.mouseup = function(){
var st = Kolich.Selector.getSelected();
sel_text=st.replace(/s/gi,"");
if(st!=''){
alert("You selected:"+sel_text);
}}
$(document).ready(function(){
$(document).bind("mouseup", Kolich.Selector.mouseup);});
</script>
View 8 Replies
View Related
Sep 13, 2009
I'm currently using the Jquery Flipv plugin, which works well. The only problem is, some words have extra padding at the end, depending on how many characters.
I'm not sure why this is, but it seems that the conversion to vertical text creates some extra spacing on certain browsers.
View 2 Replies
View Related
Jul 13, 2010
I'm having trouble with jqPlot which is not showing the graph as expected.
[URL]
Basically I request some JSON data from my Server using jQuery Ajax:
function updateGraph() {
$.ajax({
type: "GET",
url: "<?php echo $_SERVER["SCRIPT_NAME"]; ?>",
[code]....
This function should show the graph. What appears is an empty graph, with proper title, axis naming and scaling (!) but no data shows up. FireBug does not report any JS errors.
View 2 Replies
View Related
Nov 4, 2010
Is it possible to detect was the mouse on the move or not in the moment when button is released?
View 6 Replies
View Related