Youtrack improvements

Add sum to Chart view tooltips

Version vom 13.12.2018. Aktuellste Version

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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);
})($);```