ChartJSCore
ChartJSCore copied to clipboard
Implementation of Chart.js for use with .NET Core.
Hi, Following https://github.com/mattosaurus/ChartJSCore/issues/44 percentage labels are not shown on Pie chart. ``` public class DataLabels { [JsonConverter(typeof(PlainJsonStringConverter))] public string Formatter { get; set; } public ChartColor Color { get; set;...
Hi, I have found out that GenerateHorizontalBarChart method https://github.com/mattosaurus/ChartJSCore/blob/929b86bbb4aa1f3484b71f54561dc274d4fe2beb/ChartJSCore.Tests/BarChart.cs#L93 does not generate horizontal barchart.  Could you please help me fix this method?
Hello, could you please tell me how I can create horizontal bar chart in version 3? I have seen that horizontal bar requires indexaxis option (see image below). As far...
Hi, ` @{ChartJSCore.Models.Chart chart = (ChartJSCore.Models.Chart)ViewData["chart"];} @Html.Raw(chart.CreateChartCode("lineChart")); @{ ChartJSCore.Models.Chart chartPie = (ChartJSCore.Models.Chart)ViewData["piechart"];} @Html.Raw(chartPie.CreateChartCode("pieChart")); /* In Page is viewing two pie chart but should be one linechart and one one piechart....
Hi, Just want to bring to your attention; GridLines has been renamed in Chart.js v3.x to Grid along with a few other changes in property names https://www.chartjs.org/docs/3.7.1/getting-started/v3-migration.html#ticks
Hello, Demo site is not working. This project can be seen in action on the demo site [here](https://bitscry.com/Projects/Chart). Br, Saulius
Hi there, I'm probably doing something wrong but using the latest package versions, I'm not getting any data on the chart and the x axis just shows the time for...
Using version 3.11, check code below, using PieDataSet, converted script shows "type: bar" ``` //create dom id id = "chart" + Guid.NewGuid().ToString("N") + DateTime.Now.Ticks.ToString(); //initialize chart chart = new Chart()...