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
Commits
1ac84515
Commit
1ac84515
authored
5 years ago
by
Georg Graßnick
Browse files
Options
Downloads
Patches
Plain Diff
Use title and axis labels from commandline
parent
bc84c286
No related branches found
Branches containing commit
No related tags found
1 merge request
!43
Feat/scatterplot rasterizer 34
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/tudresden/inf/mci/brailleplot/rendering/ScatterPlotRasterizer.java
+3
-3
3 additions, 3 deletions
.../inf/mci/brailleplot/rendering/ScatterPlotRasterizer.java
with
3 additions
and
3 deletions
src/main/java/de/tudresden/inf/mci/brailleplot/rendering/ScatterPlotRasterizer.java
+
3
−
3
View file @
1ac84515
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment