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

Summary: SubAxes Editor isn't translated to other languages.
Product: .NET TeeChart Reporter: sandra pazos <sandra>
Component: EditorsAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED WORKSFORME    
Severity: enhancement CC: chris
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://teechart.net/directline/viewtopic.php?f=6&t=1063
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

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);
    }