How to add JavaFX Charts / Graphs : Tutorial – Genuine Coder

How to add JavaFX Charts / Graphs : Tutorial

JavaFX provides a powerful set of Charts/Graphs that can be added very easily to your programs. Frankly, It is even easier than adding a Table in JavaFX. Graphical charts are available in the javafx.scene.chart package.

Bar Chart

This video describes how to add Bar Chart to your JavaFX program.

Bar Chart data can be represented using an XYChart.Series object. All that you have to do is to make a new object and add data to it.

XYChart.Series set1 = new XYChart.Series<>();

Data can be added to this set using the code. Here XYChart.Data() takes two parameters. First one is for the X-Axis(Horizontal) and the second one is for Y-Axis(Vertical).

set1.getData().add(new XYChart.Data("James", 5000));
set1.getData().add(new XYChart.Data("Alice", 10000));
set1.getData().add(new XYChart.Data("Alex", 2000));

Finally, Connect the created series with your JavaFX Bar Chart object using getData().addAll() method.  

SalaryChart.getData().addAll(set1);

AddAll() method allows to add more than one series of data to your chart. For example if i have set1,set2 and set3 then i can add all of them by using a comma seperated list.

SalaryChart.getData().addAll(set1,set2,set3);

Pie Chart

JavaFX Pie Chart uses an ObservableList which is very similar to XYSeries.Series we used for Bar Chart. This video explains how to use pie chart.

ObservableList<PieChart.Data> pieChartData
= FXCollections.observableArrayList(
new PieChart.Data("Cars", 13),
new PieChart.Data("Bikes", 25),
new PieChart.Data("Buses", 10),
new PieChart.Data("Cycles", 22));
pieChart.setData(pieChartData);

Here i have created an ObservableList and added 4 values. The pie chart takes all of these values and allocate a percentage for each one.

For eg, Percentage of cars = 13/(13+25+10+22) = 18.5%

The data then can be associated with the chart using the same code used for Bar chart or using a simple alternative

pieChart.setData(pieChartData);

provided, pieChart is the Pie Chart object and pieChartData is the ObservableList.

Line Chart

Construction of Line Chart in Java is very much similar to Bar Chart. It takes the same XYChart.Series object.

XYChart.Series series = new XYChart.Series(); //Make a new XYChart object
//Add Data
series.getData().add(new XYChart.Data(“1”, 23));
series.getData().add(new XYChart.Data(“2”, 14));
series.getData().add(new XYChart.Data(“3”, 15));

Finally, associate the data with Line Chart.

LineChart.getData().addAll(series);

Area Chart and Scatter Chart

These two are explained together because, both of these Charts takes same type of data. Yes, the XYChart.Series object. We can use the same example used above.

XYChart.Series series = new XYChart.Series(); //Make a new XYChart object
//Add Data
series.getData().add(new XYChart.Data(“1”, 23));
series.getData().add(new XYChart.Data(“2”, 14));
series.getData().add(new XYChart.Data(“3”, 15));

Finally, associate the data with both charts.

AreaChart.getData().addAll(series);
ScatterChart.getData().addAll(series);

So that’s how we add a chart /Graph to our JavaFX program and i hope you understood these things well enough.

———————————————————————————————–
Thanks to our sponsor
https://ksaexpats.com/

Comments

51 responses to “How to add JavaFX Charts / Graphs : Tutorial”

  1. […] This visualization is implemented with the help of Chart component in JavaFX. I have used a javafx.scene.chart.BarChart. You can learn more about using JavaFX chart from this link. […]

  2. … [Trackback]

    […] Find More on on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  3. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  4. … [Trackback]

    […] Find More Information here to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  5. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  6. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  7. … [Trackback]

    […] Read More on to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  8. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  9. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  10. … [Trackback]

    […] Here you will find 7523 additional Info to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  11. … [Trackback]

    […] Information on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  12. … [Trackback]

    […] There you will find 18760 more Info on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  13. … [Trackback]

    […] There you will find 86176 additional Information to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  14. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  15. … [Trackback]

    […] Here you can find 19657 more Information on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  16. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  17. … [Trackback]

    […] Information on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  18. … [Trackback]

    […] Read More here to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  19. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  20. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  21. … [Trackback]

    […] Find More Information here to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  22. … [Trackback]

    […] Here you will find 51919 additional Info on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  23. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  24. … [Trackback]

    […] Find More Information here on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  25. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  26. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  27. … [Trackback]

    […] Find More on to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  28. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  29. … [Trackback]

    […] There you will find 31639 more Info on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  30. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  31. … [Trackback]

    […] Information on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  32. … [Trackback]

    […] Find More Information here on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  33. … [Trackback]

    […] Find More Information here to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  34. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  35. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  36. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  37. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  38. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/add-javafx-charts-graphs-tutorial-html/ […]

  39. androxal fedex without prescription

    ordering androxal no prescription online

  40. cheapest buy enclomiphene lowest price

    buy enclomiphene canada low cost

  41. buy rifaximin uk meds

    how to order rifaximin mastercard buy

  42. get xifaxan purchase england

    buy cheap xifaxan buy virginia

  43. purchase staxyn purchase line

    get staxyn uk online

  44. online order avodart generic equivalent buy

    buy cheap avodart uk delivery

  45. pfizer dutasteride price

    levitra benefits over dutasteride

  46. buy cheap flexeril cyclobenzaprine generic tablets

    purchase flexeril cyclobenzaprine no prescription overnight delivery

  47. cheapest buy gabapentin australia online generic

    purchase gabapentin usa mastercard

  48. cheapest buy fildena buy san francisco

    cheap generic fildena in canada

  49. buying itraconazole generic version

    purchase itraconazole usa buy online

  50. koupit obecný kamagra online z kanady

    obecný kamagra v brazílii

  51. sans ordonnance kamagra pharmacie envoyer annuaire

    kamagra prescription des médecins en ligne

Leave a Reply Cancel reply

Exit mobile version