|
ChartDirector Languaje |
Posted by seafree on Mar-15-2016 23:52 |
|
Hi Peter good morning, I hope you can help me please.
I'm from Mexico and here we speak Spanish, so I use the Gantt Chart but I must show the name months in spanish languaje, how can I do it?
Thanks a lot Peter.
Regards
Seafree |
Re: ChartDirector Languaje |
Posted by seafree on Mar-16-2016 05:22 |
|
Hi Peter,
I can't use BaseChart.setMonthNames, see:
$c->setMonthNames(Ene, Feb, Mar...)
I compile it, and the result is:
Error converting argument 1 to type IIStringArray
***Stack back trace***
calling XYChart.setMonthNames
Could you help me please whit it?
Thanks a lot.
Regards
Seafree |
Re: ChartDirector Languaje |
Posted by seafree on Mar-16-2016 05:23 |
|
Hi Peter,
I can't use BaseChart.setMonthNames, see:
$c->setMonthNames(Ene, Feb, Mar...)
I compile it, and the result is:
Error converting argument 1 to type IIStringArray
***Stack back trace***
calling XYChart.setMonthNames
Could you help me please whit it?
Thanks a lot.
Regards
Seafree |
Re: ChartDirector Languaje |
Posted by seafree on Mar-16-2016 05:35 |
|
THANKS A LOT PETER, I DO IT.
Thank you very much.
Regards
seafree |
Re: ChartDirector Languaje |
Posted by seafree on Mar-16-2016 05:48 |
|
my @meses = qw(Ene Feb Mar Abr May Jun Jul Ago Sep Oct Nov Dic);
$c->setMonthNames(\\@meses); |
|