Private
Public Access
1
0

agegroupcp done

This commit is contained in:
Sander Roosendaal
2018-09-28 12:22:28 +02:00
parent 6ab3c08859
commit da44ededed
4 changed files with 35 additions and 37 deletions

View File

@@ -1484,7 +1484,8 @@ def interactive_agegroupcpchart(age,normalized=False):
y_axis_type = 'linear'
plot = Figure(plot_width=900,x_axis_type=x_axis_type)
plot.sizing_mode = 'scale_width'
plot.line('duration','fitpowerfh',source=source,
legend='Female HW',color='blue')
plot.line('duration','fitpowerfl',source=source,

View File

@@ -1,47 +1,30 @@
{% extends "base.html" %}
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}Rowsandall {% endblock %}
{% block title %}Rowsandall Age Group CP{% endblock %}
{% block content %}
{% block main %}
<script type="text/javascript" src="/static/js/bokeh-0.12.3.min.js"></script>
<script async="true" type="text/javascript">
Bokeh.set_log_level("info");
</script>
{{ interactiveplot |safe }}
<script>
// Set things up to resize the plot on a window resize. You can play with
// the arguments of resize_width_height() to change the plot's behavior.
var plot_resize_setup = function () {
var plotid = Object.keys(Bokeh.index)[0]; // assume we have just one plot
var plot = Bokeh.index[plotid];
var plotresizer = function() {
// arguments: use width, use height, maintain aspect ratio
plot.resize_width_height(true, false, false);
};
window.addEventListener('resize', plotresizer);
plotresizer();
};
window.addEventListener('load', plot_resize_setup);
</script>
<style>
/* Need this to get the page in "desktop mode"; not having an infinite height.*/
html, body {height: 100%; margin:5px;}
</style>
<script type="text/javascript" src="/static/js/bokeh-0.12.3.min.js"></script>
<script async="true" type="text/javascript">
Bokeh.set_log_level("info");
</script>
<div id="workouts" class="grid_12 alpha">
{{ interactiveplot |safe }}
<h1>Interactive Plot</h1>
<h1>Interactive Plot</h1>
<ul class="main-content">
<li class="grid_4">
{{ the_div|safe }}
</div>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_analytics.html' %}
{% endblock %}

View File

@@ -12336,6 +12336,7 @@ def agegroupcpview(request,age,normalize=0):
response = render(request,'agegroupcp.html',
{
'active': 'nav-analysis';
'interactiveplot':script,
'the_div':div,
}

View File

@@ -378,11 +378,16 @@
}
.main-content li.grid_2 {
grid-column-end: span 2;
grid-column-end: span 1;
}
.main-content li.grid_3 {
grid-column-end: span 1;
}
.main-content li.grid_4 {
grid-column-end: span 4;
grid-column-end: span 1;
}
.main-content li img {
@@ -435,6 +440,10 @@
grid-column-end: span 2;
}
.main-content li.grid_3 {
grid-column-end: span 2;
}
.main-content li.grid_4 {
grid-column-end: span 2;
}
@@ -474,6 +483,10 @@
grid-column-end: span 2;
}
.main-content li.grid_3 {
grid-column-end: span 3;
}
.main-content li.grid_4 {
grid-column-end: span 4;
}