Hi,
I have a general question. When we add ‘TeeChart.Android.jar’ on to our project final project size increases by 1.4MB (because of this jar)
Is there any way we can reduce this as we don’t use all features of your product. We only use several charts.
Thanks
Saman
Search found 6 matches
- Thu May 22, 2014 9:58 am
- Forum: Java
- Topic: Library incrementing final application size
- Replies: 1
- Views: 9184
- Thu May 22, 2014 9:43 am
- Forum: Java
- Topic: non-GMT DateTimes offset
- Replies: 6
- Views: 17878
Re: TeeChart Java/Java for Android v3.2014.0519 update
Hi Yeray I found the isuue. Your DateTime only works for GMT time zone. so from the code we have to change the default time zone to GMT following code worked. DateTime dt = new DateTime(2014, 05, 16); dt.setTimeZone(TimeZone.getTimeZone("GMT")); series.add(dt, 5); dt = new DateTime(2014, 05, 17); dt...
- Wed May 21, 2014 1:25 pm
- Forum: Java
- Topic: non-GMT DateTimes offset
- Replies: 6
- Views: 17878
Re: TeeChart Java/Java for Android v3.2014.0519 update
Hi Yeray, Following is the code I use. I changed the layout to only have chart as follows, but still the issue is there. Layout activity_main.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_pare...
- Wed May 21, 2014 11:32 am
- Forum: Java
- Topic: non-GMT DateTimes offset
- Replies: 6
- Views: 17878
Re: TeeChart Java/Java for Android v3.2014.0519 update
Hi Yeray,
This is what I get (also please note that I am in UK different time zone)
I have attached the photo
Thanks
Saman
This is what I get (also please note that I am in UK different time zone)
I have attached the photo
Thanks
Saman
- Wed May 21, 2014 9:18 am
- Forum: Java
- Topic: non-GMT DateTimes offset
- Replies: 6
- Views: 17878
non-GMT DateTimes offset
Hi, When you use DateTime as chart X axis, the graph is not align properly. It always shifts to right. Can you please check and let me know how to get this right. this is the code i used @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView...
- Wed May 21, 2014 9:09 am
- Forum: Java
- Topic: TeeChart Java v3.2013.1219 version update announcement
- Replies: 2
- Views: 11061
Re: TeeChart Java v3.2013.1219 version update announcement
Hi, When you use DateTime as chart X axis, the graph is not align properly. It always shifts to right. Can you please check and let me know. this is the code i used @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_mai...