To show custom unbound value in the BarChart series tooltip you need to serialize the array with all strTest values on the client and to show the values for a custom point text in the tooltip. For example: protected void chtBillableNonBillable_TakeDataSource(object sender, Shield.Web.UI.ChartTakeDataSourceEventArgs e) { var dataHours = new List<HoursType>()...
I tried to reproduce the described issue but to no avail. On my side binding the grid to a single object show it and there is not "no records to display message". My setup is: var products = [{ ProductID: 1, ProductName: "Chai", SupplierID: 1, CategoryID: 1, QuantityPerUnit: "10 boxes...
I got this to work with a custom helper (HtmlHelper extension method). I adapted an example from http://demos.shieldui.com/aspnet/aspnet-chart/programmatic-chart-creation, but that example is for ASP.NET web forms. I'm doing MVC. My solution involved using the ChartBuilder<> object within a helper. public static class ChartExtensions { public static ChartBuilder<PropertyPivotAverageAmountPerMonth_Result> AnnualComparison(this HtmlHelper html,...
This has been implemented in the newest release of the control. It is demonstrated in the following example: https://demos.shieldui.com/web/bar-chart/overlapped-bar You need to set the divideSeries property to false. ...
javascript,jquery,charts,linechart,shieldui
You can use a format function or modify the text directly for any given point. More on this is available in the following topic: https://www.shieldui.com/documentation/components/javascript/shieldui.chart/api/seriesSettings/line/dataPointText/format...