SynchronizeAxisIntervalsHandle: {
    remove: (() => void);
}

Handle returned by synchronizeAxisIntervals for removing created side effects.

 // Example usage.
// Synchronize Axis intervals.
const handle = synchronizeAxisIntervals(axis1, axis2)

// When you want to remove the synchronization logic, call handle.remove.
handle.remove()

Type declaration

  • remove: (() => void)
      • (): void
      • Remove side effects created by synchronizeAxisIntervals, removing the synchronization logic.

         // Example syntax,
        SynchronizeAxisIntervalsHandle.remove()

        Returns void