vtkChartXY - Log Scaling X

I have a vtkChartXY and have no idea how to enable log scaling of the x-axis.

The y-axis is easy, just requiring:

chart->GetAxis(vtkAxis::LEFT)->LogScaleOn();

The x-axis is another story, since it is based off of the first column of the chart’s table. Simply calling the above code for vtkAxis::BOTTOM does nothing to the graph, and getting rid of my x-axis column obviously stops the graph from displaying the other columns’ curves.

Side notes:
Not doing any overrides or property changes of the axis

Does anyone have any information on how to log scale the x-axis?