Youtrack improvements

Add sum to Chart view tooltips

Fra 13.12.2018. Se den seneste versjonen.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

```// ==UserScript==
// @name         Youtrack improvements
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Add sum to Chart view tooltips
// @author       njd
// @match        https://issuetracker.getprintbox.com/*
// @grant        none
// ==/UserScript==

(function($) {
    'use strict';


    setInterval(function() {
        let sum = 0;
        let rows = $('.nvtooltip .value');
        if (rows.length === 0) {
            return;
        }

        rows.each(function(i, e) {
            sum += parseInt($(e).html());
        })

        let parent = $('.value').closest('tbody')
        if (parent.find('.tooltip-sum').length === 0) {
            parent.append(`
<tr><hr></tr>
<tr class="nv-pointer-events-none tooltip-sum">
    <td class="legend-color-guide nv-pointer-events-none" style="border-top: 1px solid rgba(0,0,0,0.16)">
        <div style="background-color: rgba(0, 0, 0. 0);" class="nv-pointer-events-none">
        </div>
    </td>
    <td class="key nv-pointer-events-none" style="border-top: 1px solid rgba(0,0,0,0.16)">Sum</td>
    <td class="value nv-pointer-events-none" style="border-top: 1px solid rgba(0,0,0,0.16)">${sum}</td>
</tr>
            `);
        }

    }, 320);
})($);```