TTMSFMXNativeNSTableView selection color

How do you set the selection color?


I've tried using 

 
TMSFMXNativeNSTableView1.Options.Appearance.BackGroundColor := TAlphaColor(claLightGray);
TMSFMXNativeNSTableView1.Options.Appearance.GridColor := TAlphaColor(claLightGray);

I've also played around with  

TMSFMXNativeNSTableView1.Options.Appearance.SelectionHighlightStyle := hsTableViewSelectionHighlightStyleRegular;
TMSFMXNativeNSTableView1.Options.Appearance.SelectionHighlightStyle := hsTableViewSelectionHighlightStyleNone
TMSFMXNativeNSTableView1.Options.Appearance.SelectionHighlightStyle := hsTableViewSelectionHighlightStyleSourceList;

Hi, 


Only the SelectionHighlightStyle can be used to change the color of the selection. The colors itself are following the operating system default colors.

Ok, what about the alternating row color?

Can be turned on and off with TMSFMXNativeNSTableView1.TableView.setUsesAlternatingRowBackgroundColors(True);