Youtrack improvements

Add sum to Chart view tooltips

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Youtrack improvements
// @namespace    http://tampermonkey.net/
// @version      0.3
// @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);
})($);