update: {
// filter is a row in the grid
url: function (filter) {
alert(CommaDelimitedString);
return '/path/UpdateData?ID=' + filter.ID
+ '&FilterName=' + filter.FilterName
+ &,AlertSource=' + SelectedAlertSources.replace(',', '|' )
+ '&Param4=' + Param4Arg
+ '&Param5=' + Param5Arg },
// other parameters are omitted for brevity
type: "POST"
Lets pretend this is the data:
MusicGenre AgeGroup TimesPlay
Rock 10-15 100
Rock 16-20 200
Classical 10-15 5
Classical 16-20 4
If I do not group the data and I plot it
1. Then Rock 16-20 is the biggest bubble (biggest)
2. Followed by Rock 10-15 (2nd biggest)
3. Classical 10-15 (tiny)
4. Classical 16-20 (tiny)
But I get the same color for each bubble
If I group by Genre
I want to have the same color for Rock and a different one for classical and that happens, but then the bubble size
is determined by items in the same group, not compared with the rest
So Classical 10-15 and 16-20 now are big
Classical 10-15 = 5 out of 9 instead of 5 out of 309
Classical 16-20 = 4 out of 9 instead of 4 out of 309
Both are rendered big, because the grouping is taking in consideration only items inside the group and not comparing with other groups
I want to group to have different colors, but then the purpose of the bubble chart gets defeated, because having similar sizes doesn't make an useful visualization.
Is this a bug or it is intended to work this way?
dataSource: {
transport: {
read: {
url: "@Url.Content("~/Music/GetData")",
dataType: "json",
data: { // This are the parameters
genre: function() {
return "All";
}
}
}
},
group: {
field: "Genre"
}
},
Any help? Is there a way to have groups but the bubble sizes are based on all the items, not only on the ones inside the group?
Thanks
I have a question on your Kendo UI Web license agreement. We are planning on building an application and it will be sold to customers. We might develop our own widgets and also potentially change your standard widgets, if needed. If we do this, it is not clear to me what Telerik would own. For example, section 1.1.5.1 refers to this, but it is unclear to me what “modification” refers to. Does this just refer to a “modification” to the standard Kendo UI source code? For example, what of the following would Telerik own?
- The application we build
- Widgets we develop on our own and include within our application
- Standard widgets we change and include within our application
- Other
Thanks