This is a migrated thread and some comments may be shown as answers.

Target Chart

3 Answers 88 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Shane
Top achievements
Rank 1
Shane asked on 04 Feb 2016, 05:04 PM
I was wondering if this is even possible using the current set of tools.  I'm attaching an example of what our users would like to see.  This can be done in excel, but I've google searched how to do this and came up empty.  It's basically a radar chart that doesn't put the lines between plot points.  Can someone help me out on how to pull this off?

3 Answers, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 08 Feb 2016, 02:11 PM
Hello,

You can start with the radar line chart and customize it to display only markers:
              type: "radarLine",

              // Hide the line
              width: 0,

              // Show the markers
              markers: {
                visible: true
              }

See the full API reference for details.

I hope this helps.

Regards,
T. Tsonev
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Shane
Top achievements
Rank 1
answered on 08 Feb 2016, 07:50 PM
Thanks for the API reference, that helped quite a bit.  However in it, I didn't see how to be able to color the background of the entire radarLine chart.  Is something like the attached possible?
0
Accepted
Iliana Dyankova
Telerik team
answered on 11 Feb 2016, 11:32 AM
Hi Shane,

In order to achieve this you could define multiple valueAxis.plotBands. As an example: 
//....
valueAxis: {
    visible: false,
    plotBands: [{             
        color: "green",
        from: 0,
        to: 50
    },{             
        color: "yellow",
        from: 51,
        to: 149
    }, {
        color: "orange",
        from: 150,
        to: 250
    }]
},
For your convenience here is a dojo.

Regards,
Iliana Nikolova
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Chart
Asked by
Shane
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Shane
Top achievements
Rank 1
Iliana Dyankova
Telerik team
Share this question
or