Ticket T672854
Visible to All Users

ASP.NET Core Dashboard - Change Legend Font Attributes

created 7 years ago

Hello,

I am using the ASP.NET Core MVC dashboard.  I would like to change the font size and font weight of the x and y axis point labels, x and y axis labels, and legen d labels.  I have handled the dashboardViewerApi's onItemWidgetUpdated() method, but I am unsure of how to change font size and weight after obtaining the underlying widget via args.getWidget().

Thanks,
   Justin Owen

Answers approved by DevExpress Support

created 7 years ago (modified 7 years ago)

Hello,

Use the corresponding element's font properties for its customizing. For example, the legend font can be changed with the dxChart.legend.font property:

JavaScript
if (args.ItemName == "chartDashboardItem1") { var chart = args.GetWidget(); chart.option({ legend: { font: { color: 'blue', family: 'Source Sans Pro, sans-serif', opacity: 1, size: "17px" } } }); }

You can find all available chart options in the dxChart Configuration article.
Also, you can customize an individual point of label handling the dxChart.customizePoint or dxChart.customizeLabel event. Please refer to the Charts Customize Points and Labels demo that illustrates how to accomplish a similar task.
Should you have any further questions, feel free to contact us.

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.