Hi:
We are trying to do the following programmatically. How can we access these parameters? Thanks.
From Editor panel -
1. Go to edit and select General under chart
2. Select zoom
3. set border to visible, width 0 and select color as blue
4. Now select pattern and set visible and select lightblue from swatches
Can we set these parameters?
best regards,
Programmatic control of Editor Components
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi cdn,
Yes, you can do something like this:
Yes, you can do something like this:
Code: Select all
tChart.getZoom().getPen().setVisible(true);
tChart.getZoom().getPen().setWidth(0);
tChart.getZoom().getPen().setColor(Color.BLUE);
tChart.getZoom().getBrush().setVisible(true);
tChart.getZoom().getBrush().setColor(Color.CYAN);
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Hi:
Associated question -
How can we disable orthogonal property, programmatically? We are using the following snippet to set the property to "false". But, when we check the editor it always shows it as "checked".
Any input is welcome. Thanks.
best regards,
Associated question -
How can we disable orthogonal property, programmatically? We are using the following snippet to set the property to "false". But, when we check the editor it always shows it as "checked".
Code: Select all
Aspect asp = new Aspect(tChart2.getChart());
asp.setOrthogonal(false);
best regards,
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |