1
vote
1answer
153 views

Line chart and Scatter chart overplot

This code plots a LineChart and by clicking the "Add serie" button it adds a ScatterChart It seems all ok but just move scene left/right or up/down (left mouse click and drag) both X, Y axis and ...
1
vote
0answers
133 views

How to clone X and Y axis?

I have a barChart with overplot a lineChart, two different series barChart.getData().addAll(series1); lineChart.getData().addAll(series2); My question: is it possible, and how to, clone barChart ...
1
vote
0answers
183 views

JavaFX 2.x : XY LineChart : line on chart above Y axis

This code plots a LineChart with a black line on the chart: when scrolling left/right (left mouse click and drag) the black line is above the Y left and right axis, while yellow XYLine goes below. ...
2
votes
1answer
283 views

JavaFX 2.x : Logarithmic scale on Y axis

As from this very good post here Logarithmic scale in Java FX 2 I have changed this class to get log scale on Y axis, and it works fine. The only problem I have is that there are very few horizontal ...
1
vote
0answers
139 views

JavaFx 2.x : How to auto-resize plotted data while scrolling left-right?

In the attached code I have a line chart with 3% margin for Y upper and lower values. Obviously, these settings are related to all data series, in this case to all 18 data point, so the min and max Y ...
1
vote
0answers
140 views

JavaFx 2.x : How to remove and add plotted data?

In my code below I would like to add two buttons and by clicking on a button("Remove") it will remove one by one plotted data,and plot it back by clicking on the button("Add") such as the examples: ...
1
vote
0answers
248 views

JavaFX 2.x : get mouse events on X and Y axis

The Line plotted by the following code can be compressed or expanded by left mouse click and drag on X and / or Y axis, as well as plots a crosshair on the chart. It all works perfectly, but if I ...
1
vote
0answers
81 views

JavaFX 2.x: Set stops for XY LineChart

By left mouse click anywhere on the chart, plotted line can be moved (dragged) left / right Here is the code import javafx.application.Application; import ...
1
vote
1answer
80 views

Java Fx2.x : LineChart setStrokeDashArray

I have a LineChart and I can plot with different Stroke Dash Array but I can't plot as dotted such as -fx-stroke-dash-array: 0.1,5.0; or -fx-stroke-dash-array: 0.8,8.0; Any reason for this? ...
1
vote
1answer
163 views

JavaFx 2.x: XYChart properties

Having a simple XY LineChart, I would like to set grid and line stroke (width), style (dotted, dashed and so on) and color as rgb as well as background color without using css. Is this possibile? And ...
1
vote
2answers
359 views

Retrieve String values from a CategoryAxis in a javaFX Line Chart -CategoryAxis JavaFx 2.2.3 bug in .getValueForDisplay(double displayPosition)-

I have a JavaFXline chart with months versus values. I'm trying to print in the console the month and the value from a Line chart every time I click the graph .The problem is that when I call the ...
1
vote
1answer
441 views

JavaFX 2.x : How to move Line, Grid and X Ticks together?

The code below plots a XYLineChart: by left mouse click and drag the plotted line can be translated left/right. import javafx.application.Application; import ...
1
vote
0answers
150 views

JavaFX 2.x: How to translate a XYLineChart along with other items?

This code plots a XYLineChart and a straigth line: by left mouse click and drag anywhere on the graph, XYLine is translated left/right and up down while the black line do not. I would like to bind ...
3
votes
4answers
293 views

JavaFx 2.x: BarChart with both axes as numbers

1) I want a BarChart where both axes are numbers(<Number, Number>), but it seems like this isn't supported and that you need to have a category and a number axis. Is there a way to override the ...
1
vote
0answers
230 views

JavaFx 2.x: How to extend horizontal line on subpane(s)?

This code plots two XYChart lines in a Splitpane, and draw an horizontal line only in the upper pane. I would like to have this horizontal line also in lower subpane(s) when mouse pointer is moved ...
0
votes
1answer
376 views

How to determine pixel position of line chart origin?

A JavaFX LineChart consists of the plot area and axes. Since the axes rendering uses some display space, the position of the origin in a line chart is not (0, 0). How do I get this position relative ...
2
votes
1answer
525 views

JavaFX 2.x : Extend vertical line on sub pane(s)

This code plots a LineChart upper pane and a bar Chart in lower pane. There is also a vertical line plotted left/right X move with pointer. I would like to extend this vertical line also to the ...
2
votes
0answers
296 views

JavaFX 2.x : Plotting two different types of charts on the same graph

I have a financial data serie I plot as Candlestick chart: I would like to add other serie(s) as LineChart(s). The example from javafx example - samples - Adv candlestick chart, shows a LineChart ...
1
vote
0answers
393 views

JavaFX 2.x : X and Y axis settings

My code below plot 2 XY line charts in a VERTICAL divided SplitPane. My question: I would like to have both Y axis and only one X axis at the bottom (X axis on the lower graph only) public class ...
0
votes
0answers
264 views

How to add Line Chart in javafx 2.2 FXML?

I'm using javaFX scene builder 1.0. The LineChart component is not working for FXML. I'm added a linechart component in FXML and initialized it in corresponding controller class. It displays the gui ...