Example usage for javafx.scene.paint Color CHOCOLATE

List of usage examples for javafx.scene.paint Color CHOCOLATE

Introduction

In this page you can find the example usage for javafx.scene.paint Color CHOCOLATE.

Prototype

Color CHOCOLATE

To view the source code for javafx.scene.paint Color CHOCOLATE.

Click Source Link

Document

The color chocolate with an RGB value of #D2691E

Usage

From source file:Main.java

@Override
public void start(final Stage stage) throws Exception {
    Group rootGroup = new Group();
    Scene scene = new Scene(rootGroup, 800, 400);

    Text text1 = new Text(25, 25, "java2s.com");
    text1.setFill(Color.CHOCOLATE);
    text1.setFont(Font.font(java.awt.Font.SERIF, 25));
    rootGroup.getChildren().add(text1);/*from  w  w w  . ja  v a 2  s .c  o m*/

    stage.setScene(scene);
    stage.show();
}

From source file:Main.java

@Override
public void start(final Stage stage) throws Exception {
    Group rootGroup = new Group();
    Scene scene = new Scene(rootGroup, 800, 400);

    Text text1 = new Text(25, 25, "java2s.com");
    text1.setFill(Color.CHOCOLATE);
    text1.setFont(Font.font(java.awt.Font.MONOSPACED, 35));
    rootGroup.getChildren().add(text1);/*from w w w .  j  a v  a 2  s . com*/

    stage.setScene(scene);
    stage.show();
}

From source file:Main.java

@Override
public void start(final Stage stage) throws Exception {
    Group rootGroup = new Group();
    Scene scene = new Scene(rootGroup, 800, 400);

    Text text1 = new Text(25, 25, "java2s.com");
    text1.setFill(Color.CHOCOLATE);
    text1.setFont(Font.font(java.awt.Font.MONOSPACED, 35));

    Effect glow = new Glow(1.0);
    text1.setEffect(glow);//from w  w w .j  a v  a 2  s .  c  om

    rootGroup.getChildren().add(text1);

    stage.setScene(scene);
    stage.show();
}

From source file:Main.java

@Override
public void start(final Stage stage) throws Exception {
    Group rootGroup = new Group();
    Scene scene = new Scene(rootGroup, 800, 400);

    Text text1 = new Text(25, 25, "java2s.com");
    text1.setFill(Color.CHOCOLATE);
    text1.setFont(Font.font(java.awt.Font.MONOSPACED, 35));

    final Reflection reflection = new Reflection();
    reflection.setFraction(1.0);//  w w  w.  j  a  v a  2  s  .  c  om
    text1.setEffect(reflection);

    rootGroup.getChildren().add(text1);

    stage.setScene(scene);
    stage.show();
}

From source file:Main.java

@Override
public void start(final Stage stage) throws Exception {
    Group rootGroup = new Group();
    Scene scene = new Scene(rootGroup, 800, 400);

    Text text1 = new Text(25, 25, "java2s.com");
    text1.setFill(Color.CHOCOLATE);
    text1.setFont(Font.font(java.awt.Font.MONOSPACED, 35));

    final Light.Distant light = new Light.Distant();
    light.setAzimuth(-135.0);/*from w ww  .j  av a 2  s. com*/
    final Lighting lighting = new Lighting();
    lighting.setLight(light);
    lighting.setSurfaceScale(9.0);
    text1.setEffect(lighting);

    rootGroup.getChildren().add(text1);

    stage.setScene(scene);
    stage.show();
}

From source file:Main.java

@Override
public void start(Stage primaryStage) {
    primaryStage.setTitle("Title");

    final Circle circ = new Circle(40, 40, 30);
    final Group root = new Group(circ);

    final Scene scene = new Scene(root, 800, 400, Color.BEIGE);

    final Text text1 = new Text(25, 25, "java2s.com");
    text1.setFill(Color.CHOCOLATE);
    text1.setFont(Font.font(java.awt.Font.SERIF, 25));
    root.getChildren().add(text1);// ww w.ja  v  a2 s. co m

    primaryStage.setScene(scene);
    primaryStage.show();
}

From source file:Main.java

@Override
public void start(Stage stage) {
    stage.setTitle("Bubble Chart Sample");
    final NumberAxis xAxis = new NumberAxis(1, 53, 4);
    final NumberAxis yAxis = new NumberAxis(0, 80, 10);
    final BubbleChart<Number, Number> blc = new BubbleChart<Number, Number>(xAxis, yAxis);
    xAxis.setLabel("Week");
    xAxis.setTickLabelFill(Color.CHOCOLATE);
    xAxis.setMinorTickCount(4);/*from w  ww. j  av a  2 s .  co m*/

    yAxis.setLabel("Product Budget");
    yAxis.setTickLabelFill(Color.CHOCOLATE);
    yAxis.setTickLabelGap(10);
    yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis, "$ ", null));

    blc.setTitle("Budget Monitoring");

    XYChart.Series series1 = new XYChart.Series();
    series1.setName("Product 1");
    series1.getData().add(new XYChart.Data(3, 35, 2));
    series1.getData().add(new XYChart.Data(12, 60, 1.8));
    series1.getData().add(new XYChart.Data(15, 15, 7));
    series1.getData().add(new XYChart.Data(22, 30, 2.5));
    series1.getData().add(new XYChart.Data(28, 20, 1));
    series1.getData().add(new XYChart.Data(35, 41, 5.5));
    series1.getData().add(new XYChart.Data(42, 17, 9));
    series1.getData().add(new XYChart.Data(49, 30, 1.8));

    XYChart.Series series2 = new XYChart.Series();
    series2.setName("Product 2");
    series2.getData().add(new XYChart.Data(8, 15, 2));
    series2.getData().add(new XYChart.Data(13, 23, 1));
    series2.getData().add(new XYChart.Data(15, 45, 3));
    series2.getData().add(new XYChart.Data(24, 30, 4.5));
    series2.getData().add(new XYChart.Data(38, 78, 1));
    series2.getData().add(new XYChart.Data(40, 41, 7.5));
    series2.getData().add(new XYChart.Data(45, 57, 2));
    series2.getData().add(new XYChart.Data(47, 23, 3.8));

    Scene scene = new Scene(blc);
    blc.getData().addAll(series1, series2);
    //scene.getStylesheets().add("bubblechartsample/Chart.css");
    stage.setScene(scene);
    stage.show();
}