or
Hi All,
I have integrated the bar-chart with my application and checked graph with different scenarios. I found one issue with rendering the negative values. The X axis labels gets plotted on the grid lines of graph. Please check the attached image("Barchart_NegativeValues.jpg"). This is looking vary ugly. I have old RAD Chart implementation in my project, I have attached sample image of old graph. In old RAD chart this case was handled.
Can anyone tell me know how to show the labels outside the graph in case of negative value(Please see attached image "old HTML Chart.jpg")
Thanks,
Vaibhav

Also the Font tool would add an extra empty tool row in IE, but does not in Firefox or Chrome.

if (e.CommandName == RadGrid.ExportToCsvCommandName) { GridHeaderItem HeaderItem = (GridHeaderItem)RadGrid1.MasterTableView.GetItems(GridItemType.Header)[0]; HeaderItem.Visible = false; }<script type="text/javascript"> function cellSelecting(sender, args) { var selects = sender._selectedCellsIndexes; var selectedColumn = args.get_column(); var dataItem = args.get_gridDataItem(); var cellName = dataItem.get_itemIndexHierarchical() + "&" + selectedColumn.get_uniqueName(); var output = String.format(cellName); var index = -1; for (var i = selects.length - 1; i >= 0; i--) { if (selects[i] === cellName) { index = i; } } console.log(dataItem); if (index == -1) { selects.push(cellName); } else { selects.splice(index, 1); dataItem._selected = false; } selectedColumn.set_selected(dataItem.get_itemIndexHierarchical()); //sender.set_selected(selects); selectedColumn.set_selected(selects); console.log(sender); console.log(selects); // args.set_cancel(true); //alert(output) }</script>