I've installed everything, and started by copying examples.
At first I thought this was a miracle (because the setup is so easy and the instructions are so well-written). But then I realized: not one of the example plots (at my end) is rendering properly.
Basically for every 'line' style plot, you get the first two data points stretched out over the entire horizontal part of the plot, no axis labels. The y-axis appears correct.
Since I'm using the exact code you have (for even the 'data': [69, 30, 45, 60, 55] example which is very simple, I don't understand what's missing.
class LineChartTest1(Chart):
chart_type = 'line'
def get_datasets(self, **kwargs):
return [{
'label': "My Dataset",
'data': [69, 30, 45, 60, 55]
}]
I've installed everything, and started by copying examples. At first I thought this was a miracle (because the setup is so easy and the instructions are so well-written). But then I realized: not one of the example plots (at my end) is rendering properly.
Basically for every 'line' style plot, you get the first two data points stretched out over the entire horizontal part of the plot, no axis labels. The y-axis appears correct.
Since I'm using the exact code you have (for even the 'data': [69, 30, 45, 60, 55] example which is very simple, I don't understand what's missing.
View code:
Template code:
Any suggestions would be greatly appreciated.