Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1442 - SubAxes Editor isn't translated to other languages.
Summary: SubAxes Editor isn't translated to other languages.
Status: RESOLVED WORKSFORME
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Editors (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://teechart.net/directline/viewto...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-02-18 07:47 EST by sandra pazos
Modified: 2016-03-23 10:16 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description sandra pazos 2016-02-18 07:47:55 EST
SubAxes Editor isn't translated. Would be interesting translate the SubAxes Editor for other languages, so, now is shown always to English. The code below shows that: 
  public Form1()
        {
            InitializeComponent();
      	    InitializeChart(); 
        }

   // Steema.TeeChart.Tools.MarksTip markTip1; 
    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;
      tChart1.Dock = DockStyle.Fill;
      new Steema.TeeChart.Styles.Line(tChart1.Chart);
      tChart1[0].FillSampleValues(10);
      Steema.TeeChart.Languages.Japanese.Activate();
    }

    private void button2_Click(object sender, EventArgs e)
    {
     
      Steema.TeeChart.Editors.AxesEditor a = new Steema.TeeChart.Editors.AxesEditor(tChart1.Chart, null);
      Steema.TeeChart.Editors.EditorUtils.Translate(a);
      Steema.TeeChart.Editors.EditorUtils.ShowFormModal(a, this);
    }