bichromate.graphs.sTestPieChartPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Bichromate Show documentation
Show all versions of Bichromate Show documentation
Java, Selenium, Appium, Winium, Extend, and TestNG automated testing framework. Bichromate integrates the best of these frameworks and takes automation to the next level. With Bichromate there is one function call that builds any type of Web,IOS Mobile, Android, and Windows App driver on any platform (Windows, Mac, Linux). From Local web drivers, to SauceLabs, Browserstack, and Selenium grid. Build data driven tests is never easier.
Bichromate also gives you built in Factories that, access DBs, Video Capture, FTP, POM Generation, Hilite element.
package bichromate.graphs;
import java.awt.Component;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import bichromate.core.sTestOSInformationFactory;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.chart.PieChart;
@SuppressWarnings({ "restriction", "unused" })
public class sTestPieChartPanel extends JPanel{
/**
*
*/
private static final long serialVersionUID = 1L;
public sTestPieChartPanel(){
ObservableList pieChartData =
FXCollections.observableArrayList(
new PieChart.Data("Grapefruit", 13),
new PieChart.Data("Oranges", 25),
new PieChart.Data("Plums", 10),
new PieChart.Data("Pears", 22),
new PieChart.Data("Apples", 30));
final PieChart chart = new PieChart(pieChartData);
chart.setTitle("Imported Fruits");
// this.add(chart);
}//sTestPieChartPanel
//
// Inner class for testing on the command line
//
public static class Test
{
public static void main(final String[] args){
sTestPieChartPanel pieChart = new sTestPieChartPanel();
sTestOSInformationFactory path = new sTestOSInformationFactory();
if(pieChart != null){
JFrame frame = new JFrame();
ImageIcon img = new ImageIcon(path.getImageDirectory()+"bichromateIcon.png");
if(null != img)
frame.setIconImage(img.getImage());
// frame.add(pieChart);
frame.setBounds(10, 10, 1200, 500);
frame.pack();
frame.setVisible(true);
}
} // end Main
} // end Inner class Test
}