Hi there! I'm having a problem with my wicks going through my candles. I wanted to change the color of them so it wouldn't show up but I can't find a setting for that either. Do you have any advice you can offer? I'm attaching a screenshot.
Thanks!
Michael
I have data that looks like this coming out of SQL Server and being returned to my UI via JSON
OrderCount | SubmittedDate | OrderStatus
5 | 05/01/2018 | Hold
1 | 05/02/2018 | In Process
1 | 05/02/2018 | Pending
What I am trying to achieve is to have a chart that displays the order status count by day so
So with my example data I would expect to have a bin for 05/01/2018 that shows a column that represents my hold status that indicates a count of 5. On 05/02/2018 I would expect the bin to have 2 columns: a column with a count of 1 for In Process and a column with a count of 1 for Pending. I haven't been able to figure out how to configure the chart to make this work properly and, something else that is weird, the chart only displays one of the data points for 05/02 regardless of how I manipulate the code.
var
ds =
new
kendo.data.DataSource({
data: data,
group: {
field:
"SubmittedDate"
},
schema: {
model: {
fields: {
SubmittedDate: {
type:
"date"
},
OrderCount: {
type:
"number"
},
OrderStatus: {
type:
"string"
}
}
}
}
});
$(
"#columnChart"
).kendoChart({
dataSource: ds,
legend: {
position:
"bottom"
},
series: [{
type:
"column"
,
field:
"OrderCount"
,
categoryField:
"OrderStatus"
}]
});
If it matters the date field is represented as MM/dd/yyyy in the JSON object. Any help would be greatly appreciated!
Hello
I am working on Including KendoSortable in my Kendo UI Grid. I am able to add it on a radio button select event (as below).
http://demos.telerik.com/kendo-ui/sortable/integration-grid
This is how I am able to add it:
currentGrid.table.kendoSortable({
filter: filter,
cursor: "move",
ignore: ignore,
hint: $.noop,
//hint: function (element) { //customize the hint
// return element.clone().addClass("hint");
//},
placeholder: function (element) {
return element.clone().addClass("k-state-hover").css("opacity", 0.65);
},...............
How can I remove it and re-add it dynamically, say on addSortable and removeSortable radio button click events.
Thanks.
Hi,
How can I customize the diagram background? I would like to draw some horizontal bands with custom size, specific background colour and border to separate the diagram boxes levels. I would like to achieve something like "https://www.telerik.com/products/winforms/diagram.aspx" in section "Shapes, Container Shapes and Connections". On that page we have a sample with separation for "First Game", "Second Game" etc.
Hello.
I pulled Kendo down from npm however webpacking kendo.all.js results in a 3MB file so I would prefer to only pack the controls that my application is going to utilize. I found this link which shows all of the script dependencies so, the chart for example, I assume I could pack that up like:
const path = require('path');
module.exports = {
entry: './node_modules/@progress/kendo-ui/js/kendo.dataviz.chart.js',
output: {
filename: 'kendo.js',
path: path.resolve(__dirname, 'wwwroot/js')
}
};
but what is the preferred approach to bundling multiple controls?
Hi.
We're using multiple Kendo UI Editor controls on a page. Each editor control have a custom toolbar set.
We're experiencing quite a slow load.
Here's an example with 4 editor controls. Using the Chrome Performance tool, it takes an estimated 4-5 seconds to load the empty controls. Sometimes as much as 8 seconds.
https://dojo.telerik.com/aMUcArob
We're running Kendo UI 2018 R1. But switching to the later versions doesn't seem to make a difference.
What can we do to speed up the controls? Is this what should be expected?
Hi,
Is it possible to configure the "HorizontalSeparation" between diagram elements (shapes) for every diagram level?
If parent diagram element is wide and all it's childs are not so wide, then parent elements are overlapping.
Example with this problem can be found here: https://dojo.telerik.com/erAFiwIB/2
Hello!
I would like to display the chart every 2,000 ms (with animation).
Is there a way?
Hi Team,
I am using attribute for column definition like below and giving class for entire column. But not getting how to give cell class based on condition like for index 3 I wanted class for particular column cell.
attributes: { "class": "my-class"},
Thanks in Advance,
Jose