AAChartKit icon indicating copy to clipboard operation
AAChartKit copied to clipboard

Remove User Action

Open jempis opened this issue 4 years ago β€’ 2 comments

Hi all, It is possibile to remove the user action. I want that user, when touch the chart, nothing appear:

  • no tooltip
  • no marker selection
  • not series highlights ... etc You can Help me

jempis avatar May 06 '21 16:05 jempis

.tooltipSet(AATooltip.new .enabledSet(false)) // no tooltip .xAxisSet(AAXAxis.new .crosshairSet(AACrosshair.new .colorSet([AAColor clearColor]) .widthSet(@(0)))) // no marker selection .statesSet(@[ AASeriesElement.new .statesSet(AAStates.new .hoverSet(AAHover.new .enabledSet(true ) .lineWidthPlusSet(@0))) // not series highlights .dataSet() ])

MargoFG avatar May 13 '21 09:05 MargoFG

AAChartView.new.userInteractionEnabled = NO;

fabcz avatar May 15 '21 01:05 fabcz