Search in sources :

Example 1 with Series

use of javafx.scene.chart.XYChart.Series in project Gargoyle by callakrsos.

the class ScmCommitComposite method load.

public void load() {
    try {
        scmHistoryWalk();
        getBarChartDayOfMonthCategory().setLabel("기간별 커밋 통계");
        getLineChartDayOfWeekCategory().setLabel("요일별 커밋 통계");
        getBarChartDayOfMonthCategory().getCategories().add(SERIES_LABEL);
        getLineChartDayOfWeekCategory().getCategories().add(SERIES_LABEL);
        Color lineColor = Color.GREEN;
        double strokeWidth = 1;
        String cssStyleClassName = ".chart-series-line";
        {
            /*start Desing css.*/
            BarChart<String, Long> barChartDayOfMonth = getBarChartDayOfMonth();
            String style = "-fx-bar-fill: ".concat(FxUtil.toWebString(lineColor)).concat(";");
            for (Node n : barChartDayOfMonth.lookupAll(".default-color0.chart-bar")) {
                n.setStyle(style);
            }
            //				barChartDayOfMonth.setStyle(
            //						".chart-legend-item-syCmbol chart-bar series0 bar-legend-symbol default-color0{- fx-background-color:green;}");
            /*end Desing css.*/
            /*start Popover*/
            //무조건 1개의 시리즈만 처리하므로 인덱스에서 바로 가져옴.
            ObservableList<Data<String, Long>> dataArr = getBarChartDayOfMonth().getData().get(0).getData();
            for (Data<String, Long> d : dataArr) {
                d.getNode().setOnMouseClicked(ev -> {
                    if (ev.getClickCount() == 1 && ev.getButton() == MouseButton.PRIMARY)
                        createPopOver(d);
                });
            }
            barChartDayOfMonth.setMinWidth(BarChart.USE_COMPUTED_SIZE);
            barChartDayOfMonth.requestLayout();
        /*end Popover*/
        }
        {
            LineChart<String, Long> lineChartDayOfWeek = getLineChartDayOfWeek();
            lineChartDayOfWeek.setStyle(".chart-series-line .series0 .default-color0{- fx-background-color:green;}");
            Set<Node> lookupAll = lineChartDayOfWeek.lookupAll(".chart-line-symbol");
            StringBuffer sb = new StringBuffer();
            sb.append("-fx-background-color: " + FxUtil.toRgbString(lineColor) + ", white;");
            sb.append(" -fx-background-insets: 0, 2;");
            sb.append("-fx-background-radius: 5px;");
            sb.append("-fx-padding: 5px;");
            for (Node n : lookupAll) {
                n.setStyle(sb.toString());
            }
            String style = "-fx-stroke: " + FxUtil.toRgbString(lineColor) + "; -fx-stroke-width: " + strokeWidth + ";";
            for (Node seriesLine : lineChartDayOfWeek.lookupAll(cssStyleClassName)) {
                seriesLine.setStyle(style);
            }
        }
    } catch (SVNException e) {
        LOGGER.error(ValueUtil.toString(e));
    }
}
Also used : MouseButton(javafx.scene.input.MouseButton) ListView(javafx.scene.control.ListView) GagoyleDate(com.kyj.fx.voeditor.visual.framework.model.GagoyleDate) MouseEvent(javafx.scene.input.MouseEvent) LoggerFactory(org.slf4j.LoggerFactory) Series(javafx.scene.chart.XYChart.Series) SimpleDateFormat(java.text.SimpleDateFormat) XYChart(javafx.scene.chart.XYChart) LinkedHashMap(java.util.LinkedHashMap) LineChart(javafx.scene.chart.LineChart) ContextMenu(javafx.scene.control.ContextMenu) Map(java.util.Map) FxCollectors(com.kyj.fx.voeditor.visual.util.FxCollectors) Color(javafx.scene.paint.Color) Logger(org.slf4j.Logger) Label(javafx.scene.control.Label) MenuItem(javafx.scene.control.MenuItem) SVNException(org.tmatesoft.svn.core.SVNException) Data(javafx.scene.chart.XYChart.Data) Collection(java.util.Collection) Node(javafx.scene.Node) Set(java.util.Set) MasterSlaveChartComposite(com.kyj.fx.voeditor.visual.component.MasterSlaveChartComposite) BarChart(javafx.scene.chart.BarChart) Collectors(java.util.stream.Collectors) FxUtil(com.kyj.fx.voeditor.visual.util.FxUtil) List(java.util.List) TreeMap(java.util.TreeMap) SVNLogEntry(org.tmatesoft.svn.core.SVNLogEntry) ValueUtil(kyj.Fx.dao.wizard.core.util.ValueUtil) DateUtil(com.kyj.fx.voeditor.visual.util.DateUtil) ObservableList(javafx.collections.ObservableList) BorderPane(javafx.scene.layout.BorderPane) Set(java.util.Set) Color(javafx.scene.paint.Color) Node(javafx.scene.Node) Data(javafx.scene.chart.XYChart.Data) SVNException(org.tmatesoft.svn.core.SVNException) ObservableList(javafx.collections.ObservableList) BarChart(javafx.scene.chart.BarChart) LineChart(javafx.scene.chart.LineChart)

Example 2 with Series

use of javafx.scene.chart.XYChart.Series in project Gargoyle by callakrsos.

the class SVNViewer method svnTreeViewOnAction.

public void svnTreeViewOnAction(SVNItem item) {
    if (!item.isDir()) {
        lastSelectedSVNItem.set(item);
        tbRevision.getItems().clear();
        LineChart<String, String> lineHist = new LineChart<>(new CategoryAxis(), new CategoryAxis());
        //			lineHist.setRotate(90d);
        //			lineHist.scaleXProperty().set(0.7);
        //			lineHist.scaleYProperty().set(0.7);
        lineHist.autosize();
        lineHist.setLegendVisible(false);
        List<SVNLogEntry> logs = item.getManager().log(item.getPath());
        tbRevision.getItems().addAll(logs.stream().sorted(sortUpper).collect(Collectors.toList()));
        // 시리즈 생성
        ObservableList<Data<String, String>> observableArrayList = FXCollections.observableArrayList();
        logs.stream().sorted(sortLower).forEach(entry -> {
            Date date = entry.getDate();
            String dateString = DateUtil.getDateString(date.getTime(), "yy-MM-dd HH:mm");
            Data<String, String> data = new Data<>(dateString, entry.getAuthor());
            setDataNode(entry, data);
            data.getNode().setOnMouseClicked(e -> {
                if (e.getClickCount() == 2 && e.getButton() == MouseButton.PRIMARY) {
                    String path = item.path;
                    long revision = entry.getRevision();
                    String content = item.getManager().cat(path, String.valueOf(revision));
                    BorderPane pane = new BorderPane(FxUtil.createJavaTextArea(content));
                    pane.setTop(new Label(item.getManager().fromPrettySVNLogConverter().apply(entry)));
                    FxUtil.showPopOver(data.getNode(), pane);
                }
            });
            data.getNode().setOnMouseEntered(ev -> {
                data.getNode().setBlendMode(BlendMode.GREEN);
            });
            data.getNode().setOnMouseExited(ev -> {
                data.getNode().setBlendMode(null);
            });
            observableArrayList.add(data);
        });
        Series<String, String> series = new Series<>("Commitors.", observableArrayList);
        lineHist.getData().add(series);
        borChart.setCenter(lineHist);
        String cat = item.getManager().cat(item.getPath());
        //			String simpleName = item.getSimpleName();
        javaTextAre.setContent(cat);
        tabPaneSVN.getSelectionModel().select(tabHistChart);
    }
}
Also used : BorderPane(javafx.scene.layout.BorderPane) SVNLogEntry(org.tmatesoft.svn.core.SVNLogEntry) Label(javafx.scene.control.Label) Data(javafx.scene.chart.XYChart.Data) Date(java.util.Date) Series(javafx.scene.chart.XYChart.Series) CategoryAxis(javafx.scene.chart.CategoryAxis) LineChart(javafx.scene.chart.LineChart)

Example 3 with Series

use of javafx.scene.chart.XYChart.Series in project Gargoyle by callakrsos.

the class PMDViolationbyBarChartComposite method createNode.

/* (non-Javadoc)
	 * @see com.kyj.fx.voeditor.visual.component.pmd.chart.PMDViolationChartVisualable#createNode()
	 */
@Override
public Node createNode() {
    xAxis = new CategoryAxis();
    xAxis.setAutoRanging(false);
    xAxis.setAnimated(false);
    yAxis = new NumberAxis();
    yAxis.setAnimated(false);
    yAxis.setPrefWidth(60d);
    yAxis.setAutoRanging(true);
    yAxis.setMaxWidth(60d);
    yAxis.setLabel("Violation Count");
    Series<String, Number> dataList = new Series<>(FXCollections.observableArrayList());
    dataList.setName("Priority");
    BarChart<String, Number> c = new BarChart<>(xAxis, yAxis);
    barChart.set(c);
    series = c.getData();
    series.add(0, dataList);
    this.dataList = dataList.getData();
    return c;
}
Also used : Series(javafx.scene.chart.XYChart.Series) NumberAxis(javafx.scene.chart.NumberAxis) CategoryAxis(javafx.scene.chart.CategoryAxis) BarChart(javafx.scene.chart.BarChart)

Example 4 with Series

use of javafx.scene.chart.XYChart.Series in project Money-Manager by krHasan.

the class ExpenseChart method getExpenseData.

public static Series<String, Number> getExpenseData(String monthName) {
    XYChart.Series<String, Number> sector = new XYChart.Series<>();
    String[] allSector = new ComboboxList().getSectorList();
    // chart data for all other Sectors
    for (String sectorName : allSector) {
        String sectorShortName = getAbbreviateName(sectorName);
        double amount = longToDouble(new Sector().getAmountBySectorFromExpense(monthName, sectorName));
        sector.getData().add(new XYChart.Data<>(sectorShortName, amount));
    }
    // chart data for "Adjusted Balance" Sector
    String srtName = getAbbreviateName("Adjusted Balance");
    double amnt = longToDouble(new Sector().getAmountBySectorFromExpense(monthName, "Adjusted Balance"));
    sector.getData().add(new XYChart.Data<>(srtName, amnt));
    return sector;
}
Also used : Series(javafx.scene.chart.XYChart.Series) ComboboxList(operation.ComboboxList) Sector(tab.Sector) XYChart(javafx.scene.chart.XYChart)

Example 5 with Series

use of javafx.scene.chart.XYChart.Series in project cryptomator by cryptomator.

the class UnlockedController method startIoSampling.

// ****************************************
// IO Graph
// ****************************************
private void startIoSampling() {
    final Series<Number, Number> decryptedBytes = new Series<>();
    decryptedBytes.setName(localization.getString("unlocked.label.statsDecrypted"));
    final Series<Number, Number> encryptedBytes = new Series<>();
    encryptedBytes.setName(localization.getString("unlocked.label.statsEncrypted"));
    ioGraph.getData().add(decryptedBytes);
    ioGraph.getData().add(encryptedBytes);
    ioAnimation = new Timeline();
    ioAnimation.getKeyFrames().add(new KeyFrame(Duration.seconds(IO_SAMPLING_INTERVAL), new IoSamplingAnimationHandler(decryptedBytes, encryptedBytes)));
    ioAnimation.setCycleCount(Animation.INDEFINITE);
    ioAnimation.play();
}
Also used : Series(javafx.scene.chart.XYChart.Series) Timeline(javafx.animation.Timeline) KeyFrame(javafx.animation.KeyFrame)

Aggregations

Series (javafx.scene.chart.XYChart.Series)10 XYChart (javafx.scene.chart.XYChart)6 CategoryAxis (javafx.scene.chart.CategoryAxis)4 Data (javafx.scene.chart.XYChart.Data)4 Label (javafx.scene.control.Label)4 Logger (org.slf4j.Logger)4 LoggerFactory (org.slf4j.LoggerFactory)4 Map (java.util.Map)3 TreeMap (java.util.TreeMap)3 Collectors (java.util.stream.Collectors)3 ObservableList (javafx.collections.ObservableList)3 FXML (javafx.fxml.FXML)3 NumberAxis (javafx.scene.chart.NumberAxis)3 SettingsManager (com.github.drbookings.model.settings.SettingsManager)2 BookingSelectionManager (com.github.drbookings.ui.selection.BookingSelectionManager)2 MasterSlaveChartComposite (com.kyj.fx.voeditor.visual.component.MasterSlaveChartComposite)2 GagoyleDate (com.kyj.fx.voeditor.visual.framework.model.GagoyleDate)2 DateUtil (com.kyj.fx.voeditor.visual.util.DateUtil)2 FxCollectors (com.kyj.fx.voeditor.visual.util.FxCollectors)2 FxUtil (com.kyj.fx.voeditor.visual.util.FxUtil)2