1

Using SciChart RubberBandXyZoomModifier, how can I make it fill the selection area box with a transparent grey color?

Dave
  • 11
  • 1

1 Answers1

0

According to the SciChart docs, there are three ways to change the selection area box color for the RubberBandXyZoomModifier.

1/ Set the RubberBandXyZoomModifier.RubberBandFill, RubberBandStroke properties

  <s:RubberBandXyZoomModifier RubberBandFill="#33FFFFFF" RubberBandStroke="#FF3333"/>

2/ Set the above properties in a custom theme

see Creating a Custom Theme

3/ overring a color of the above properties in an existing theme

see Overriding colors of our themes

Any of the above will achieve the desired result.

Dr. Andrew Burnett-Thompson
  • 20,980
  • 8
  • 88
  • 178