1. ToolTip on LineAndShape plot jfree.orgI have been trying to add Tooltip to lineAndShape plot in my overlaid chart. However the lineAndShape plot is not XY plot, While I was trying to add the Tooltip, it can compile and deploy. But there are no display in the website. I am using default settings for the tooltip generator, by right at least the website should display something, ... |
2. ToolTip on LineAndShape plot jfree.org |
3. SpiderWebPlot Tooltip jfree.org |
4. SpiderWebPlot clickable, with tooltips and url jfree.orgSpiderWebPlot clickable, with tooltips and url by ninaj Fri Mar 03, 2006 5:15 pm Dear all, I would like to contribute an updated SpiderWebPlot, which recognizes mouse clicks and (as a side effect) supports tooltips and urls. The updated SpiderWebPlot is available at http://ambit.acad.bg/nina/projects/jfre ... bPlot.java and below is an example of how to use it: Code: Select all ... |
5. tooltips display (x, y, string) in xy plot jfree.orgI made a scattered xy plot. I need to display (x, y, string) when mouse moves over the data points. I know there're xyztooltips, xyzdatasets. But these requires (x, y, z) all numbers. How can I display tooltips like (x, y, some string) in xy plot? Is there any example code? Can I use xyzdatasets for xy plot? for example, suppose ... |
6. Custom tooltips: mix on scatterplot chart jfree.orgfinal XYSeries series = new XYSeries(0); series.add(1.0, 500.2); series.add(5.0, 694.1); series.add(4.0, 100.0); final XYSeriesCollection data = new XYSeriesCollection(); data.addSeries(series); final JFreeChart chart = ChartFactory.createScatterPlot( "Series", "X", "Y", data, PlotOrientation.VERTICAL, true, true, false ); XYPlot plot = (XYPlot)chart.getPlot(); XYItemRenderer renderer = plot.getRenderer(); CustomXYToolTipGenerator cttGen ... |
7. Removing tooltips from a PiePlot jfree.orgIs this even possible? In all the demos I've seen, every pie chart has tooltips, but I don't want them. I've tried two things: 1) setting the "tooltips" parameter to false in ChartFactory.createPieChart 2) piePlot.setToolTipGenerator(null); ... neither of which work. The thing is that I put the values in the legend, so the tooltips are unnecessary. Thoughts? Thanks, Andrew |
8. SWT tooltip shift in CombinedDomainXYPlot jfree.orgHi, I am using the SWT version of JFreechart and found some problems with the tooltip position. The position of the plots is shifted along the range axis. anyone else experiencing the same problem? Any hint to solve this? Also I had some problems with the SwtChartEditor when the chartcomposite is embedded in widgets like the wizard. The editor freezes and ... |
9. How can I change default ScatterPlot tooltip? jfree.orgby leiras Fri Aug 22, 2008 4:13 pm Hi David, please take a look at my code: Code: Select all public class ScatterPlotTest { public static void main (String[] args) { DefaultXYDataset dataset = new DefaultXYDataset(); dataset.addSeries("Ford", new double[][] { { 1d }, { 2d ... |
10. Category Plot tooltips jfree.orgI've added a StandardCategoryToolTipGenerator to my Category Plot. I get tooltips, but only if the mouse is directly above one of the category labels. For example, if I have two categories: "Category 1" and "Category 2", I get tooltips if the mouse is directly in line above either category, but I don't get tooltips if the mouse is BETWEEN categories. Is ... |
11. XYPlot URLgenerator / Tooltip generator jfree.orgDear List, I am trying to plot a XYgraph via a servlet in an JSP page. Now I would like to label each point individually/ generate a specific URL for each datapoint according to an label provided in the dataset. For example (Data structure): (double, double, String) x1, y1, label1 x2, y2, label2 x3, y3, label3 Until now, I only found ... |
12. Tooltips not shown on SpiderWebPlot jfree.orgTooltips not shown on SpiderWebPlot by harris Wed Dec 23, 2009 4:27 pm I'm currently using SpiderWebPlot in order to create a spider chart. Unfortunatly, I don't succeed in showing tooltips. Here is my code: Code: Select all public class GenererSpiderAction extends AbstractCriteresMensuelsAction { public ActionForward doExecute(ActionMapping mapping, ActionForm theForm, ... |
13. Meter plot tooltip jfree.org |
14. Custom ToolTip with a Polar Plot jfree.orgI have been able to create custom text tooltips for a combinedXY plot that behave very nicely. However, I cannot seem to get a similar solution for a polar plot. [This plot shows a different color for each Local Time based on values using database input, and needs to show another string containing the values from the database for the tooltip.] ... |
15. Tooltips Not Displaying on CategoryPlot jfree.orgTooltips Not Displaying on CategoryPlot by ctower Wed May 12, 2010 1:59 pm Hi there, I've just gotten into JFreeChart and it has been great so far. I decided that having Tooltips would be helpful for the project I am working on. Unfortunately I haven't been able to get them to show up and I have no idea what the ... |
16. Custom the tooltip in a ScatterPlot jfree.orgHi everyone !!! As I titled my topic, I would like to custom the tooltip in my Scatterplot. I used those two topics http://www.jfree.org/phpBB2/viewtopic.php?f=3&t=11815&p=35117&hilit=tooltip+scatter#p35117 and http://www.jfree.org/phpBB2/viewtopic.php?f=3&t=28942. I don't get any warning or bug. My problem is that I don't manage to set a new tooltip value (it is well generated with the method), the only thing is that it doen't display ... |
17. SWT -- Tooltips and plot Orientation jfree.orgSWT -- Tooltips and plot Orientation by marc0 Wed Oct 27, 2010 4:44 pm Hello everyone, I currently am using JFreeChart 1.0.13 to develop an Eclipse plug-in that will generate plots, using the ChartComposite class within a JFace Structured Viewer. I have found out that whenever I set the plot orientation to horizontal during runtime, tooltips will not show up ... |
18. Tool tip generator for scatter plot jfree.org |
19. Tooltips and Labels with Polar Plot jfree.orgHi guys, I am looking to extend the functionality of the Polar plot to cover tooltips and labels. So far, I have some limited understanding of tooltip (and label) generators and how they relate to plots, charts and the like, but there is so much detail out there it's difficult to see the wood for the trees! Could someone provide me ... |