Convert Chart to Image for Japanese Region
Contents
[
Hide
]
In this topic, we will show you how to set Japanese Region for a chart.
Defines an inheritance class
First step, you need to define a class “ChartJapaneseSetttings” that inherit from ChartGlobalizationSettings. Then, by rewriting the related functions, you can set the text of the chart elements in your own language. Code example:
Config Japanese Setting For Chart
In this step, you will use the class “ChartJapaneseSetttings” you defined in the previous step. Code example:
Workbook wb = new Workbook("Japanese.xls");
wb.Settings.GlobalizationSettings.ChartSettings = new ChartJapaneseSetttings();
Chart chart0 = wb.Worksheets[0].Charts[0];
chart0.ToImage("Output.png");
Then you can see the effect in the output image, the elements in the chart will be rendered according to your settings.
Conclusion
In this example, if you do not set Japanese Region for a chart, the following chart elements may be rendered in the default language, such as English. After the above operation, we can get an output chart picture with Japanese Region.
Supported elements | Value in this example | default value in the English environment |
---|---|---|
Axis Title Name | 軸タイトル | Axis Title |
Axis Unit Name | 百,千… | Hundreds, Thousands… |
Chart Title Name | グラフ タイトル | Chart Title |
Legend Increase Name | ぞうか | Increase |
Legend Decrease Name | 削減 | Decrease |
Legend Total Name | すべての | Total |
Other Name | その他 | Other |
Series Name | シリーズ | Series |
|