
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Maruthi Krishna has Published 870 Articles

Maruthi Krishna
840 Views
A menu is a list of options or commands presented to the user, typically menus contain items that perform some action. The contents of a menu are known as menu items and a menu bar holds multiple menus.JavaFx supports three kinds of menu items namely − check menu item, custom ... Read More

Maruthi Krishna
716 Views
A menu is a list of options or commands presented to the user, typically menus contain items that perform some action. The contents of a menu are known as menu items and a menu bar holds multiple menus.JavaFx supports three kinds of menu items namely − check menu item, custom ... Read More

Maruthi Krishna
761 Views
JavaFX supports three kinds of menu items namely − check menu item, custom menu item, and, radio menu item.A RadioMenuItem is a special MenuItem that has a checkmark (tick) similar to a checkbox. This has two states selected (with a checkmark) and unselected (without checkmark). It is represented by the ... Read More

Maruthi Krishna
265 Views
A menu is a list of options or commands presented to the user. In JavaFX a menu is represented by the javafx.scene.control.Menu class, you can create a menu by instantiating this class.A menu item is an option in the menu it is represented by the javafx.scene.control.MenuItem class, a superclass of ... Read More

Maruthi Krishna
634 Views
In the pie chart, we represent the data values as slices of a circle. Each slice is differentiated from other (typically by color). In JavaFX, you can create a pie chart by instantiating the javafx.scene.chart.PieChart class.Making Labels InvisibleEach slice is associated with a label. (name of the slice as value) ... Read More

Maruthi Krishna
374 Views
Radio ButtonA radio button is a type of button, which is circular in shape. It has two states, selected and deselected. Generally, radio buttons are grouped using toggle groups, where you can only select one of them. You can create a radio button in JavaFX by instantiating the javafx.scene.control.RadioButton class.TooltipWhenever ... Read More

Maruthi Krishna
2K+ Views
In JavaFX the javafx.scene.control package provides various classes for nodes specially designed for UI applications by instantiating these classes you can create UI elements such as button, Label, etc..You can resize the created elements using the setPrefWidth() or, setPrefHeight() or, setprefSize() methods accordingly.To prevent the resize of the UI controls ... Read More

Maruthi Krishna
264 Views
In the TilePane layout, the nodes are arranged as a grid of uniformly sized tiles. You can create a tile pane in your application by instantiating the javafx.scene.layout.TilePane class.Orientation refers to the arrangement of the nodes in the pane in general, they are arranged wither horizontally or vertically.By default the ... Read More

Maruthi Krishna
435 Views
You can create a line chart by instantiating the javafx.scene.chart.LineChart class. Following is an example to create multiple line charts in a single JavaFX window. Here, we are plotting the average temperatures of three different cities in a year.In this example we have defined a method which accepts the data ... Read More

Maruthi Krishna
976 Views
To create rich text contents in our applications JavaFX provides a special layout called text flow represented by the javafx.scene.layout.TextFlow class. Using this you can layout multiple text nodes in a single text flow.Since they are separate nodes, you can set different fonts to them. If you try to add ... Read More