talha06
talha06

Reputation: 6466

Tooltip does not work with Gauge chart

Tooltip does not work with gauge chart; using the latest version - Ext JS 6.0.1 (classic).

Here is my tooltip configuration:

tooltip: {
    trackMouse: true,
    width: 140,
    height: 28,
    renderer: function(toolTip, record, ctx) {
        toolTip.setHtml(record.get('data1') + '%');
    }
}

You can reach the fiddle from here.

Upvotes: 0

Views: 834

Answers (2)

Abdulsalam KMP
Abdulsalam KMP

Reputation: 1

Try This Select Tool Tip from Property Window

enter image description here

=CStr(Sum(Fields!Fieldname.Value)).

Upvotes: 0

yorlin
yorlin

Reputation: 440

It looks like a bug, that still wasn't fixed. Also from documentation:

Note that tooltips are shown for series markers and won't work if the marker is not configured

But it doesn't work even with markers.

Upvotes: 1

Related Questions