Chart improvements
This commit is contained in:
Родитель
aa14fde93b
Коммит
ce08f5051f
|
@ -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'),
|
||||
|
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 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>
|
||||
|
|
Загрузка…
Ссылка в новой задаче