I'm trying to create a couple of charts in C# using OxyPlot, each based on a DateTimeAxis. On each of them, I want to display two line series and a linear bar series. The line series display properly, however nothing is seen for the linear bar series.
The charts are all getting data from a data source refreshed with new data regularly, and the date axis is always updated so that new data is visible, old data gets out of the view, and it works well with the line series.
If I change the LinearBarSeries to LineSeries, data is displayed properly, therefore data binding should be ok. If I change the LineSeries to LinearBarSeries, no data is shown at all. That is, something seems to go wrong only with how a LinearBarSeries is displayed.
Is there anything specific to LinearBarSeries that I may miss?