Can you tell me how to change the bar's color? thank you !
@Randomcode_02 жыл бұрын
Check out my newest video to see how I would do it.
@_RockyJoe_ Жыл бұрын
How do I remove the background behind bars?
@Randomcode_0 Жыл бұрын
You can style the bar charts appearance either by utilizing a CSS file or by manually adjusting the styling within your Java code.
@elkiparionarojas9206 Жыл бұрын
gracias!!
@kyleryxn2 жыл бұрын
You should show the class with the main methods, this wasn't very helpful
@Randomcode_02 жыл бұрын
The setup inside Main only starts the window and connects to the FXML there is nothing BarChart setup inside main. More specifically Main looks like this: public class Main extends Application { @Override public void start(Stage primaryStage) throws Exception{ Parent root = FXMLLoader.load(getClass().getResource("sample.fxml")); primaryStage.setTitle("Hello World"); primaryStage.setScene(new Scene(root)); primaryStage.show(); } public static void main(String[] args) { launch(args); } }