What options control axes style in PairedHistogram? Here's the online doc. I'm trying to control axes color, thickness, and probably font size on the tick marks. but the options are confusing me:
data = Transpose@
Table[{RandomInteger[{1, 10}], RandomInteger[{1, 10}]}, {100}];
PairedHistogram[data[[1]], data[[2]],
PlotRange -> {All, All}, BarOrigin -> "XAxis",
ChartBaseStyle -> {EdgeForm[None]},
ChartStyle -> {{Blue, Orange}, None,
None},(*ChartElementFunction-> \
ChartElementDataFunction["SegmentScaleRectangle","Segments"-> \
5,"ColorScheme"->"SolarColors"],*)
ChartLegends -> {"A", "B"},
ImageSize -> 300, AspectRatio -> 1]



PairedHistogramquestion? – belisarius Jan 26 at 0:36