This article describes how to set the increments between gaps in a labeled scatterplot. For example, if you want to override the default gaps and set them to 10%
Requirements
A labeled scatterplot
Method
- Select the labeled scatterplot in your output
- In the Object inspector, select Properties > R CODE
- In the R CODE window, insert the following code (highlighted in red below):
standardization = get0("formHeatStandardization"),
left.columns = get0("formLeftColumns"),
left.column.headings = get0("formLeftColumnHeadings"),
right.columns = get0("formRightColumns"),
right.column.headings = get0("formRightColumnHeadings"),
# General arguments
signif.show = show.significance,
font.units = get0("formFontUnits", ifnotfound = "pt"),
background.fill.color = get0("formBgColor", ifnotfound = "transparent"),
background.fill.opacity = get0("formBgOpacity", ifnotfound = 1.0),
append.data = TRUE,
x.tick.distance = .10,
y.tick.distance = .10
warn.if.no.match = FALSE) - Click Calculate
Next