search for: flot

Displaying 10 results from an estimated 10 matches for "flot".

Did you mean: flat
2009 May 13
0
Plotting data with flot
...ise this question and at the same time i do know that this is the right place to get the right people. So, I am raising it over here (because i am struck in the middle of nowhere). My question is like this: how to add the zooming facility to the below data (extracted from turning-series example of flot and something little changed). In this zooming facility what i want to achieve is that first select the region to be zoomed and then click the button to zoomed to the selected region and if possible zoom out functionality as well. var datasets = { "usa": { label: &quo...
2016 Apr 21
2
[RFC] Using D3 in LNT?
> On 21 Apr 2016, at 17:15, Chris Matthews <chris.matthews at apple.com> wrote: > > I love D3. This is a great idea. Maybe we can finally kill flot! > > We are going to have to start using the html data attributes more; but that is a good thing IMO. > > D3 would greatly simply some of our CSS/templates too. I am regularly surprised how hard it is to make a cell turn colors in our current jinja macro setup. > > Is it okay...
2014 May 09
2
[LLVMdev] [LNT] Does LNT's mouse wheel zooming work well anywhere?
...nly a minor annoyance, but mouse wheel zooming on LNT graphs is pretty broken on at least OSX. It does not work correctly on Chrome, Safari or Firefox. On Safari and Chrome the zoom is way to sensitive, on Firefox, the page scrolls while mouse wheel zooming. This appears to be a limitation of the flot graphing package we use. Does LNT’s mouse wheel zooming work better for people Linux and Windows? I think mouse wheel zoom should be turned off, in favor of traditional double click to zoom, and zoom in/out buttons.
2012 Aug 01
1
Rails app structure of search portal
Hello, I want to create an google-like app with one search box, where you can send a request to different legacy databases. And the results of the database requests should be displayed on one site with jquery databse tables and flot charts ..... But I am having problems to display all the results of the requests (of one controller) on one site. How would I do this? Can someone please outline an example? Many thanks. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk&quot...
2010 Feb 07
2
convert R plots into annotated web-graphics
Dear all, I would like to make a large scatter plot created with R available as an interactive web graphic, in combination with additional text-annotations for each data point in the plot. The idea is to present the text-annotations in an HTML-table and inter-link the data points in the plot with their corresponding entries in the table, i.e. when clicking on a data point in the plot, the
2016 Apr 21
3
[RFC] Using D3 in LNT?
Hi, I've been working on further improving the perf profile view in LNT that James added recently. I've got a series of patches ready that reconstruct the control flow graph from the perf profiles, which helps a lot in quickly finding the codegen differences that cause performance deltas. I've used the D3 javascript library (https://d3js.org/) to implement the visualization. My
2000 Sep 03
1
Clipping problem
Hi. Today most modern CDs are recorded using maximum volume (so that it grabs more of your attention when the song is being played on the radio - even though this destroys the dynamic range). Anyway lossy audio codecs can introduce clipping - audio distortion when the sound hits maximum peak value, so I thought I should ask if Vorbis has this solved? --- >8 ---- List archives:
2023 Jul 03
1
unexpected NT_STATUS_OBJECT_NAME_INV
...sting files with ':' in names start to mangle, until i set 'mangled names = no'. I do not have any windows clients. Are there any parameters that I am missing to restore version '4.17.5-1' behavior? Problem: $ smbclient \\\\192.168.148.192\\nanopct4 Password for [WORKGROUP\flotsky]: Try "help" to get a list of possible commands. smb: \> cd tst smb: \tst\> mkdir 123: NT_STATUS_OBJECT_NAME_INVALID making remote directory \tst\123: Environment: [root at nanopct4 ~]# uname -a Linux nanopct4 6.3.8-1-MANJARO-ARM #1 SMP PREEMPT Fri Jun 16 16:17:17 UTC 2023 aarch...
2002 Nov 28
2
rsync as a bakcup tool and the case of rotated logs
...o identical files in --backup-dir=/backup/incremental-2002-11-27 when is detects that /server/sylog.138.gz is the actually the same as /backup/current/syslog.137.gz, Thanks in advance for your insight, -- PHEDRE: Elle s'en est punie, et fuyant mon courroux, A cherch? dans les flots un supplice trop doux. (Ph?dre, J-B Racine, acte 5, sc?ne 7)
2011 Oct 12
4
How to access controller's instance variable in a js.erb loaded by javascript_include_tag?
Hello! In rails 3.1 app I have a controller UsersController with ''show'' action. show.html.erb contains: <% content_for(:head) do %> <%= javascript_include_tag ''myscript'' %> <% end %> <p>Hello @user.name</p> And I have this in myscript.js.erb $jQuery(document).ready(function() { alert(<%= @user.name %>); }); @user is being