This commit is contained in:
Maxime Beauchemin 2014-12-04 14:59:54 -08:00
Родитель aa14fde93b
Коммит ce08f5051f
3 изменённых файлов: 9 добавлений и 2 удалений

Просмотреть файл

@ -195,7 +195,7 @@ class Airflow(BaseView):
if series not in all_data:
all_data[series] = []
if type(x) in (datetime, Timestamp, date) :
x = x.strftime("%s") * 1000
x = int(x.strftime("%s")) * 1000
else:
x = int(dateutil.parser.parse(x).strftime("%s")) * 1000
all_data[series].append([x, float(y)])
@ -210,6 +210,13 @@ class Airflow(BaseView):
'chart':{
'type': chart.chart_type
},
'plotOptions': {
'series': {
'marker': {
'enabled': False
}
}
},
'title': {'text': ''},
'xAxis': {
'title': {'text': df.columns[1]},
@ -742,6 +749,7 @@ class ChartModelView(ModelView):
form_choices = {
'chart_type': [
('line', 'Line Chart'),
('spline', 'Spline Chart'),
('bar', 'Bar Chart'),
('column', 'Column Chart'),
('area', 'Area Chart'),

Двоичные данные
airflow/www/static/loading.gif Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 16 KiB

Просмотреть файл

@ -31,7 +31,6 @@
<script src="{{ url_for('static', filename='highcharts-more.js') }}">
</script>
<script>
execution_date = '{{ execution_date }}';
hc = {{ hc|safe }};
$('#hc').highcharts(hc);
</script>