plotSetTicPosition

Purpose

Controls if the axes tick are inside or outside the axes line.

Format

plotSetTicPosition(&myPlot, position)
Parameters:
  • &myPlot (struct pointer) – A plotControl structure pointer.

  • position (string) – Position of the ticks. Options: ["outside", "inside", "hidden"].

Examples

_images/plotsetaxesticsposition-cr.jpg
// Declare plotControl structure
struct plotControl myPlot;

// Initialize plotControl structure
myPlot = plotGetDefaults("xy");

// Set ticks to be inside the plot
plotSetTicPosition(&myPlot, "inside");

// Create data
x = seqa(0.1, 0.1, 50);
y = sin(x)~cos(x);

// Plot the data with the new line colors
plotXY(myPlot, x, y);

Remarks

Note

This function sets an attribute in a plotControl structure. It does not affect an existing graph, or a new graph drawn using the default settings that are accessible from the Tools > Preferences > Graphics menu.