Hi,
I have a PivotGrid (MVC) and im using it's datasource to generate the Chart. This has gone well, apart from the Series. I've worked out how to get one working using the example here: https://docs.telerik.com/kendo-ui/controls/data-management/pivotgrid/how-to/integration/chart-integration
For my PivotGrid i have two values for my 'Rows', but the Chart only displays one, see attached image, here's my Chart:
$(container).kendoChart({ title: { text: title }, dataSource: { data: data, group: "row" }, series: [{ type: "column", field: "measure", name: "#= group.value # (category)", categoryField: "column" }], legend: { position: "bottom" }, valueAxis: { labels: { format: "{0:N}" } }, dataBound: function (e) { var categoryAxis = e.sender.options.categoryAxis; if (categoryAxis && categoryAxis.categories) { categoryAxis.categories.sort(); } } });
I'm sure it's most likely to-do with the Series, but using the integration provide i'm not sure how to add it.
Thanks,
Lee.

$(document).ready(function () { setTimeout(function () { createBarChart('#chart1'); createBarStackedChart('#chart2'); createPieChart('#chart3'); createBarChart('#chart4'); createBarStackedChart('#chart5'); createPieChart('#chart6'); createBarChart('#chart7'); createBarStackedChart('#chart8'); createPieChart('#chart9'); createBarChart('#chart10'); createBarStackedChart('#chart11'); createPieChart('#chart12'); //Initialize the chart with a delay to make sure //the initial animation is visible }, 400);});Is it possible to animate the bubbles when the data changes? I mean that the attributes (x,y,size,color) transition from the current to the new.
(Syntax includes TypeScript)
var opt: kendo.dataviz.ui.ChartOptions = {};
opt.title = { text: 'Plot' };
opt.transitions = true;
opt.dataSource = this.dataSource;
opt.series = [{ type: 'bubble', yField: 'price', xField: 'time', sizeField: 'size', categoryField: 'id' }];//, overlay: { gradient:'glass'} }]; // colorField
opt.xAxis = [{ title: { text: 'Time' }, crosshair: { visible: true, tooltop: { visible: true, format: "n0" } } }];
opt.yAxis = [{ title: { text: 'Change' }, crosshair: { visible: true, tooltop: { visible: true, format: "n0" } } }];
opt.tooltip = { visible : true, format : "{3}", opacity : 1 };
////////////////////////////////////////////////////////////////////////////////
public mergeDataArray( items : Array<any> ) : void
{
//this.dataSource.data(item);
var item : any;
var src: any;
var i : number;
var j : number;
var n : number = this.dataSource.total();
var nout : number = items.length;
var found: boolean;
console.log('outter ' + nout + ' ' + n );
for(j = 0; j < nout; j++)
{
src = items[j];
found = false;
//console.log('outter ' + src['id']);
for(i = 0; i < n; i++)
{
item = this.dataSource.at(i);
if( src.id == item.id )
{
item.set('price', src.price);
item.set('time', src.time);
found = true;
break;
}
} // endfor
if(!found)
{
// add in new item
}
} // endfor
//this.dataSource.sync();
console.log('changed ' + this.dataSource.hasChanges() );
}
The data source does see that the data has changed, but it just does a quick set with no transition/animation from current condition to the new condition.

Hi, i am having trouble with Editor on a textarea. It works on my Mac/PC but not on Iphone X, safari.
It autoexpands the editors height to be same height as the content. Instead of using set height and show scrollbars.
I've tried setting alot of different CSS heights, min heights. using delay and setting after a while using jquery, setting height on parent div,
etc. but i can't get it to behave like on the pc.
Is it possible to use the MaskedTextBox for entering a software version string? major.minor.revision.build?

Hello
​I have a grid with remote json kendo datasource. In this model I have dateTime type field. I want to filter all records, which is equal to date chosen in column filter and ignore the time part. I'll give an example:
I have records: 08/05/15 7:23:00, 08/05/15 ​16:46:00, 10/05/15 20:31:00
I write in filter: 08/05/15
I want to get rec​ords: 08/05/15 7:23:00, 08/05/15 ​16:46:00.
Generally speaking, this thread is similar to http://www.telerik.com/forums/grid-filters-with-date-and-time#zyQCkkICqE6c-MSzxNvGcg. There is the project, which works well, but only ​in Telerik version 2012.1. Could you provide an example project with this feature in Telerik version 2015.2.805?