Responsive arrows

You can configure how the arrows behave when container sizes change.

create('arrow', { responsive: ... })

Name
Type/s
Description
responsive Default: false
false'rotate''scale'ReponsiveArrowOptions
Set the behavior of the arrow when it exceeds the limits of the container.
type Required
'rotate''scale'
In order to fit the container, should rotate the arrow or shrink?
minScale Default: 0.25
number
('scale' option only) If shrink, minScale (in scale terms where 1 is normal)

Please note that this requires updating. When the window size changes, a global automatic update is triggered. This behavior is controlled by the updateOnResize global configuration option.

If you need a straightforward way to update when another container resizes, consider using the ResizeObserver, which is lesser-known but widely compatible. Here's an example:

new ResizeObserver(update).observe(containerElement)

responsive: 'rotate' example

const baseOptions = {
  target: '#box-1', 
  container: '#test-container-1',
  // ...
  responsive: 'rotate',
  fillColor: '#5896d5'
}

create('arrow', {
  ...baseOptions,
  fromAngle: 'bottom-left',
  fillColor: '#d55877',
  size: 0.9
})

// The other three arrows...
create('arrow', { 
  ...baseOptions, 
  // ...
} 

// Your update logic...
#box-1

responsive: 'scale' example

const baseOptions = {
  target: '#box-2', 
  container: '#test-container-2',
  // ...
  responsive: 'scale',
  fillColor: '#5896d5'
}
// Rest of the previous example code
#box-2

Using minScale property

const baseOptions = {
  target: '#box-3', 
  container: '#test-container-3',
  // ...
  responsive: {
    type: 'scale',
    minScale: 0.6
  },
  fillColor: '#5896d5'
}
// Rest of the previous example code
#box-3