Skip to content

Commit

Permalink
Remove grid lines from visualizations (#49)
Browse files Browse the repository at this point in the history
remove gridlines #400
  • Loading branch information
keckelt authored Oct 13, 2022
1 parent d28ee99 commit 16bd84c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Taskview/visualizations/DensityPlot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ export class DensityPlot extends SingleAttributeVisualization {
scale: 'x',
orient: 'bottom',
gridScale: 'y',
grid: true,
grid: false,
tickCount: { signal: 'ceil(width/40)' },
domain: false,
labels: false,
Expand All @@ -535,7 +535,7 @@ export class DensityPlot extends SingleAttributeVisualization {
scale: 'y',
orient: 'left',
gridScale: 'x',
grid: true,
grid: false,
tickCount: { signal: 'ceil(height/40)' },
domain: false,
labels: false,
Expand Down
2 changes: 1 addition & 1 deletion src/Taskview/visualizations/GroupedBoxplot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ export class GroupedBoxplot extends MultiAttributeVisualization {
scale: `x`,
orient: `top`,
gridScale: `y`,
grid: true,
grid: false,
tickCount: { signal: `ceil(child_width/40)` },
domain: false,
labels: false,
Expand Down
4 changes: 2 additions & 2 deletions src/Taskview/visualizations/KaplanMeierPlot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ export class KaplanMeierPlot extends SingleAttributeVisualization {
scale: 'x',
orient: 'bottom',
gridScale: 'y',
grid: true,
grid: false,
tickCount: { signal: 'ceil(width/40)' },
domain: false,
labels: false,
Expand All @@ -736,7 +736,7 @@ export class KaplanMeierPlot extends SingleAttributeVisualization {
scale: 'y',
orient: 'left',
gridScale: 'x',
grid: true,
grid: false,
tickCount: { signal: 'ceil(height/40)' },
domain: false,
labels: false,
Expand Down
4 changes: 2 additions & 2 deletions src/Taskview/visualizations/Scatterplot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ export class Scatterplot extends MultiAttributeVisualization {
scale: `x`,
orient: `bottom`,
gridScale: `y`,
grid: true,
grid: false,
tickCount: { signal: `ceil(width/40)` },
domain: false,
labels: false,
Expand All @@ -757,7 +757,7 @@ export class Scatterplot extends MultiAttributeVisualization {
scale: `y`,
orient: `left`,
gridScale: `x`,
grid: true,
grid: false,
tickCount: { signal: `ceil(height/40)` },
domain: false,
labels: false,
Expand Down

0 comments on commit 16bd84c

Please sign in to comment.