[[operator]] Specific Overview
Select an operator from EventLog Overview for more details
{% endblock %}
{% block scripts %}
{% include "analytics.js" %}
{% endblock %}
{% block body_config %}
/* Add shadow effect to chart. If you don't like it, get rid of it. */
svg {
-webkit-filter: drop-shadow( 0px 3px 3px rgba(0,0,0,.3) );
filter: drop-shadow( 0px 3px 3px rgba(0,0,0,.25) );
}
/*Styling for the lines connecting the labels to the slices*/
polyline{
opacity: .8;
stroke: {{config['text-color']}};
stroke-width: 3px;
fill: none;
shape-rendering: geometricPrecision;
}
/* styling for the donut slices*/
path {
shape-rendering: geometricPrecision;
}
/* Make the percentage on the text labels bold*/
.labelName tspan {
font-style: normal;
font-weight: 700;
}
/* In biology we generally italicise species names. */
.labelName {
font-size: 1rem;
font-style: italic;
}
.y-axis line, .y-axis path, .y-axis text{
fill: {{config['text-color']}}
}
.x-axis path, .x-axis line, .x-axis text{
fill: {{config['text-color']}}
}
.tick line{
stroke: grey
}
/* D3 Donut Code from: https://bl.ocks.org/mbhall88/b2504f8f3e384de4ff2b9dfa60f325e2
MIT License
Copyright (c) 2017 Michael Hall
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
{% endblock %}