emptyTick: TickStyle = ...

TickStyle singleton, which can be used to indicate that Ticks shouldn't be displayed.

Can be used with TickStrategies.

Example usage:

// Get Default Y Axis of XY Chart.
chart.getDefaultAxisY()
// Modify the Axis' TickStrategy.
.setTickStrategy(
// Using a Numeric TickStrategy, modify it's Styler.
AxisTickStrategies.Numeric, ( numericTickStrategy ) => numericTickStrategy
// Set the Minor TickStyle of the TickStrategy as EmptyTick.
.setMinorTickStyle( emptyTick )
)