Chinease, Japanese, Arabic, Russian

Notice this web site builds the control from code behind but you could also grab it from the toolbox, this sample also uses a ViewModel to populate the properties of the control(s) in this sample.

sample image

View model

using System.Collections.Generic;
using LiveChartsCore;
using LiveChartsCore.SkiaSharpView;
using LiveChartsCore.SkiaSharpView.Painting;
using SkiaSharp;

namespace ViewModelsSamples.Axes.LabelsFormat2;

public class ViewModel
{
    public ViewModel()
    {
        Series = new ISeries[]
        {
            new ColumnSeries<double> { Values = new double[] { 426, 583, 104 } },
            new LineSeries<double> { Values = new double[] { 200, 558, 458 }, Fill = null },
        };

        XAxes = new List<Axis>
        {
            new Axis
            {
                Name = "Salesman/woman",
                NamePaint = new SolidColorPaint { Color = SKColors.Red },
                //Labels = new string[] { "王", "赵", "张" },
                Labels = new string[] { "سرجیو", "لاندو", "لوئیس" },
                LabelsPaint = new SolidColorPaint
                {
                    Color = SKColors.Black,
                    // you need to enable the Chinease characters for SkiaSharp
                    // Livecharts provides the MatchChar() function that relays on the
                    // SKFontManager.Default.MatchCharacter() SkiaSharp function.
                    //FontFamily = LiveChartsSkiaSharp.MatchChar('汉') // 汉语 // mark
                    FontFamily = LiveChartsSkiaSharp.MatchChar('أ'), // Arab
                    //FontFamily = LiveChartsSkiaSharp.MatchChar('あ'), // Japanease
                    //FontFamily = LiveChartsSkiaSharp.MatchChar('Ж'), // Russian
                }
            }
        };

        YAxes = new List<Axis>
        {
            new Axis
            {
                Name = "Sales amount",
                NamePadding = new LiveChartsCore.Drawing.Padding(0, 15),
                Labeler = Labelers.Currency
            }
        };
    }

    public IEnumerable<ISeries> Series { get; set; }
    public List<Axis> XAxes { get; set; }
    public List<Axis> YAxes { get; set; }
}

Form code behind

using System.Windows.Forms;
using LiveChartsCore.SkiaSharpView.WinForms;
using ViewModelsSamples.Axes.LabelsFormat2;

namespace WinFormsSample.Axes.LabelsFormat2;

public partial class View : UserControl
{
    private readonly CartesianChart cartesianChart;

    public View()
    {
        InitializeComponent();
        Size = new System.Drawing.Size(50, 50);

        var viewModel = new ViewModel();

        cartesianChart = new CartesianChart
        {
            Series = viewModel.Series,
            XAxes = viewModel.XAxes,
            YAxes = viewModel.YAxes,

            // out of livecharts properties...
            Location = new System.Drawing.Point(0, 0),
            Size = new System.Drawing.Size(50, 50),
            Anchor = AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top | AnchorStyles.Bottom
        };

        Controls.Add(cartesianChart);
    }
}

Articles you might also find useful: