So I have been fighting with this for a while. I'm trying to get custom frame ticks on both the left and right side of a DistributionChart. It's not going very well. It just keeps throwing errors saying tick position needs to be a number. Which in my code it is. Here is an example:
With[
{fps = {120, 60, 50, 40, 30, 25, 20, 15, 10}},
DistributionChart[
RandomVariate[SkewNormalDistribution[##], 100] & @@@ {{20, 13, 5}, {30, 12, 10}},
ChartLabels -> {1, 2},
PlotRange -> {0, 70},
GridLines -> {None, N@Table[1/i*1000, {i, fps}]},
FrameTicks -> {
{
Table[{N[1/i*1000], NumberForm[N[1/i*1000], 3]}, {i, fps}],(*Left*)
Table[{1/i*1000, i}, {i, fps}] (*Right*)
},
{
None,(*Bottom*)
None (*Top*)
}
}
]
]
Any help would be much appreciated.

AbsoluteOptions@ DistributionChart[RandomReal[BetaDistribution[2, 1/4], {6, 100}]]– belisarius Oct 7 '12 at 19:52DistributionChartalso has a problem with Ticks:DistributionChart[data, ChartLabels -> {"a", "b", "c"}] AbsoluteOptions[%]– David Carraher Oct 7 '12 at 20:05