Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BraillePlot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Georg Graßnick
BraillePlot
Merge requests
!43
Feat/scatterplot rasterizer 34
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat/scatterplot rasterizer 34
feat/scatterplot_rasterizer-34
into
master
Overview
6
Commits
32
Pipelines
0
Changes
7
Merged
Georg Graßnick
requested to merge
feat/scatterplot_rasterizer-34
into
master
5 years ago
Overview
3
Commits
32
Pipelines
0
Changes
1
Expand
Replace static title and labels by user supplied values
Use column view for legend
correct label order
Edited
5 years ago
by
Ghost User
1
0
Merge request reports
Compare
version 2
version 7
cf355efa
5 years ago
version 6
b345ffb8
5 years ago
version 5
e09efcac
5 years ago
version 4
d643fbfe
5 years ago
version 3
1ac84515
5 years ago
version 2
bc84c286
5 years ago
version 1
f40e07c2
5 years ago
master (base)
and
version 3
latest version
f93f5e03
32 commits,
5 years ago
version 7
cf355efa
31 commits,
5 years ago
version 6
b345ffb8
30 commits,
5 years ago
version 5
e09efcac
29 commits,
5 years ago
version 4
d643fbfe
28 commits,
5 years ago
version 3
1ac84515
27 commits,
5 years ago
version 2
bc84c286
26 commits,
5 years ago
version 1
f40e07c2
25 commits,
5 years ago
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/main/java/de/tudresden/inf/mci/brailleplot/rendering/ScatterPlotRasterizer.java
+
3
−
3
Options
@@ -49,16 +49,16 @@ public class ScatterPlotRasterizer implements Rasterizer<ScatterPlot> {
final
int
yAxisStepWidth
=
cellHeight
*
Y_AXIS_STEP_WIDTH
;
final
BrailleLanguage
.
Language
language
=
BrailleLanguage
.
Language
.
DE_BASISSCHRIFT
;
final
String
title
=
"Streudiagramm - Gewicht zu Höhe"
;
final
String
title
=
scatterPlot
.
getTitle
()
;
final
String
titleToDataSetSeparator
=
" - "
;
final
String
legendTitle
=
title
;
final
String
axisExplanationGroupName
=
"Achsenbeschriftungen"
;
final
String
xAxisLegendGroupName
=
"x-Achse Werte"
;
final
String
yAxisLegendGroupName
=
"y-Achse Werte"
;
final
String
xAxisLabel
=
"x-Achse"
;
final
String
xAxisLabelValue
=
"Gewicht in kg"
;
final
String
xAxisLabelValue
=
scatterPlot
.
getXAxisName
()
;
final
String
yAxisLabel
=
"y-Achse"
;
final
String
yAxisLabelValue
=
"Höhe in m"
;
final
String
yAxisLabelValue
=
scatterPlot
.
getYAxisName
()
;
Rectangle
completeArea
=
canvas
.
getCellRectangle
();
Loading