Is there an easy (recommended) way to align regular plots (e.g. ListPlot or Plot) with chart type graphics (BarChart or DistributionChart)?
For example:
Show[
DistributionChart[Table[RandomReal[NormalDistribution[i, .2], 1000], {i, 1, 10}]],
ListPlot[Range[1, 10]]
]

I would like the points of the ListPlot to reside exactly on top of the DistributionChart elements. Furthermore, the coordinate positioning of chart elements seems to vary with the number of elements (which is ridiculous).
Show[
DistributionChart[Table[RandomReal[NormalDistribution[i, .2], 1000], {i, 1, 3}]],
ListPlot[Range[1, 3]]
]

