Creating a Stacked BarChart in JavaFX with Fxml | JavaFX Tutorial for Beginners

In this tutorial session, we will learn to create Stacked BarChart in JavaFX with FXML.   Important components of Stacked BarChart Chart :    1) X and Y-Axis 2) X and Y-Axis Labels 3) Series of data (more than one) 4) Legends 5) Title Steps to Create a Stacked Bar Chart: ************************************ 1) First Create … Read more

How to set background color and image for the JavaFX chart?

In this tutorial, you will learn to set background color and image for a JavaFX chart. Important concept: All JavaFX charts have common properties which we can set by  .chart,  .chart-content,  .chart-title, and  .chart-legend CSS classes.  JavaFX line chart with FXML: https://youtu.be/0_TeHv2Q1PI – How to apply CSS on the JavaFX stage? https://youtu.be/81b_qNDF6Yg If you find … Read more

Setting a Background Color for a JavaFX Chart Plot

By default, we have light and dark gray grids on the chart plot. But we can change it easily with help of CSS. In this tutorial, we will set background colors and alternate colors for grids. .chart-plot-background { -fx-background-color: #e2ecfe; } .chart-vertical-grid-lines { -fx-stroke: #3278fa; } .chart-horizontal-grid-lines { -fx-stroke: #3278fa; } .chart-alternative-row-fill { -fx-fill: #99bcfd; … Read more

Setting Alternative Colors for the Series in a JavaFX Line Chart

By default, the Caspian style sheet defines eight colors of line that correspond to the first eight series of data. When the number of data series added to the line chart exceeds eight, the color of the extra lines is defined in the .chart-series-line CSS class. Use the .chart-series-line class and .default-color i.chart-series-line classes to … Read more

How to fix “www.youtube.com refused to connect” error when trying to embbed video in blogs or any html page?

 In this tutorial we will learn how to fix a common error “www.youtube.com refused to connect” that comes when we try to embed youtube videos in blog pages or any website’s html page. Please watch the below tutorial to fix this error quickly.  Following this the code to embed any youtube video in html page … Read more