The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
DDDharanidharan Dharmasivam Syncfusion Team February 27, 2019 09:12 AM UTC
Hi Jsu,
Greetings from Syncfusion.
We have analyzed your query. Your requirement can be achieved using the load event of chart. Here based on the device, we have assigned the title. Find the code snippet to achieve this requirement.
@(Html.EJS().Chart("LineChart").Load("chartLoad")
//Other Configurations
.Render())
function chartLoad(args) {
//Here we have assigned the empty string when it is mobile device, you can change this based on your scenario
args.chart.primaryXAxis.title = ej.base.Browser.isDevice ? "" : "Primary X Axis";
args.chart.primaryYAxis.title = ej.base.Browser.isDevice ? "" : "Primary Y Axis";