[SalesForce] How to display the field history related list for a custom object on a Visualforce page

I cannot find anything equivalent to:

<apex:relatedList list="ProcessSteps" />

which works for Approvals.

The only solution I can think of is to build a controller/extension that gets the raw history data (from MyObj__History) and write my own page elements to render it in a table. Is there a neater solution?

Best Answer

I don't believe there is a simple solution by just utilizing apex:relatedList. The way I have done it has always been a custom solution.

I would check out this link for more information on how to do it with a custom component.