CrosshairRenderArgs constructor

CrosshairRenderArgs([
  1. ChartAxis? axis,
  2. dynamic value,
  3. String? axisName,
  4. AxisOrientation? orientation,
])

Creating an argument constructor of CrosshairRenderArgs class.

Implementation

CrosshairRenderArgs([
  this.axis,
  this.value,
  this.axisName,
  this.orientation,
]);