jQuery UI Widgets Forums Chart Pie Chart linesEnabled Property

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 9 years, 7 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Pie Chart linesEnabled Property #67007

    jkorrek
    Participant

    The linesEnabled property for labels in pie/donut charts is not working – the lines for the labels are always shown – no matter what the value of the property is.

    Example

    Pie Chart linesEnabled Property #67010

    Dimitar
    Participant

    Hello jkorrek,

    Thank you for the feedback. We confirm the reported issue. Until it is fixed, you can set the label radius to be smaller than the pie radius in order to disable label lines, e.g.:

    var settings = {
        showBorderLine: false,
        backgroundColor: 'transparent',
        source: teamScore,
        colorScheme: 'scheme2',
        title: '',
        description: '',
        seriesGroups: [{
            toolTipFormatFunction: toolTipCustomFormatFn,
            type: 'pie',
            showLabels: true,
            useGradient: false,
            series: [{
                dataField: 'TotalWin',
                displayText: 'Team',
                labels: {
                    linesEnabled: false,
                    radius: 50
                },
                initialAngle: 90,
                radius: 60,
                centerOffset: 3
            }]
        }]
    };

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.