I am creating a radar chart to display data and it works just fine. However, the title(s) that appear in the legend can be extremely long. Right now I have it showing a shortened version of the title in the legend, but I would like it so when the user does a mouseover on a legend title, a tooltip or some time of bubble pops up that shows the full title/label. From what I see in the API docs, I can see you can add a listener to the entire chart, but not just on the legend titles.

You can however click on a legend item to make the data show/hide, so there is some type of listening functionality. Any ideas how I can add a custom mouseover listener to the legend of the following radar chart?

Ext.define("COM.view.portlet.RadarChart", {
extend  : "Ext.panel.Panel",
alias   : "widget.myradarchart",
requires: ["Ext.chart.theme.Base", "Ext.chart.series.Series"],

initComponent: function () {
    //@fixme: Why is the first radar not show x-axis lines?
    Ext.apply(this, {
        layout: "fit",
        width: 600,
        height: 300,
        items: {
            xtype: 'chart',
            style: 'background:#fff',
            theme: 'Category2',
            insetPadding: 20,
            animate: true,
            store: 'Seoradar',
            legend: {
                position: "bottom"
                //ADDING LISTENERS HERE DOESN'T WORK
            },
            axes: [{
                type: "Radial",
                position: "radial",
                maximum: 100,
                label: {
                    font: "11px Arial",
                    display : "none"
                }
            }],
            series: [{
                showInLegend    : true,
                showMarkers     : true,
                markerConfig: {
                    radius  : 2,
                    size    : 2
                },
                type    : 'radar',
                xField  : 'name',
                yField  : 'site0',
                style: {
                    opacity: 0.4
                }
            },{
                showInLegend    : true,
                showMarkers     : true,
                type            : 'radar',
                xField          : 'name',
                yField          : 'site1',
                style: {
                    opacity: 0.4
                }
            }]
        }
    });
    this.callParent(arguments);
}

});

link|improve this question

feedback

1 Answer

You can add listeners in your series configuration. You can see which events are available here.

series: [
    {
        type: 'column',
        axis: 'left',
        listeners: {
            'itemmouseup': function() {
                //do something
            }
        },
        xField: 'category',
        yField: 'data1'
    }
]
link|improve this answer
I saw that, but was curious on the bigger issue of adding listeners to something that isn't already configured. Like I mentioned, the legend has a click listener, but can't figure out how to add other types of listeners. – Hallik Jun 17 '11 at 3:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.