use of javafx.scene.chart.LineChart 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));
}
}
use of javafx.scene.chart.LineChart 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);
}
}
use of javafx.scene.chart.LineChart in project jvarkit by lindenb.
the class VariantQualChartFactory method build.
@Override
public Chart build() {
final NumberAxis xAxis = new NumberAxis();
xAxis.setLabel("QUAL");
final NumberAxis yAxis = new NumberAxis();
yAxis.setLabel("Count");
final XYChart.Series<Number, Number> serie = new XYChart.Series<Number, Number>();
serie.setName(xAxis.getLabel());
for (final Integer i : new TreeSet<>(this.qual2count.keySet())) {
serie.getData().add(new XYChart.Data<Number, Number>(i, this.qual2count.count(i)));
}
final LineChart<Number, Number> sbc = new LineChart<Number, Number>(xAxis, yAxis);
sbc.setTitle(this.getName());
sbc.getData().add(serie);
sbc.setCreateSymbols(false);
sbc.setLegendVisible(false);
return sbc;
}
use of javafx.scene.chart.LineChart in project jvarkit by lindenb.
the class GCPercentChartFactory method build.
@Override
public LineChart<Number, Number> build() {
final NumberAxis xAxis = new NumberAxis();
xAxis.setLabel("%GC");
final NumberAxis yAxis = new NumberAxis();
yAxis.setLabel("Count");
final XYChart.Series<Number, Number> serie = new XYChart.Series<Number, Number>();
serie.setName("QC");
for (int g = 0; g <= 100; ++g) {
serie.getData().add(new XYChart.Data<Number, Number>(g, this.gcPercent2count.count(g)));
}
final LineChart<Number, Number> sbc = new LineChart<Number, Number>(xAxis, yAxis);
sbc.setTitle("Percentage GC");
sbc.getData().add(serie);
sbc.setCreateSymbols(false);
sbc.setLegendVisible(false);
return sbc;
}
use of javafx.scene.chart.LineChart in project jvarkit by lindenb.
the class MapqChartFactory method build.
@Override
public LineChart<Number, Number> build() {
final NumberAxis xAxis = new NumberAxis();
xAxis.setLabel("MAPQ");
final NumberAxis yAxis = new NumberAxis();
yAxis.setLabel("Count");
final XYChart.Series<Number, Number> serie = new XYChart.Series<Number, Number>();
serie.setName(xAxis.getLabel());
for (int g = 0; g <= 100; ++g) {
serie.getData().add(new XYChart.Data<Number, Number>(g, this.mapq2count.count(g)));
}
final LineChart<Number, Number> sbc = new LineChart<Number, Number>(xAxis, yAxis);
sbc.setTitle(this.getName());
sbc.getData().add(serie);
sbc.setCreateSymbols(false);
sbc.setLegendVisible(false);
return sbc;
}
Aggregations