Search found 25 matches

by Beige
Mon Apr 05, 2010 8:45 am
Forum: .NET
Topic: Bar chart having massive data not displayed in IE
Replies: 4
Views: 6540

Re: Bar chart having massive data not displayed in IE

Hi Narcís - Are you able to reproduce the problem. I have one more update for you. The problem is not reproducible in IE8.
by Beige
Thu Apr 01, 2010 2:44 pm
Forum: .NET
Topic: Bar chart having massive data not displayed in IE
Replies: 4
Views: 6540

Re: Bar chart having massive data not displayed in IE

Hi Narcís - thanks for reply. I attached the sample application TestChart.zip . I have excluded the Teechart.dll file from the bin folder as it is too big in size and don’t allow me to attach the sample application. I version of the dll I have is 2.0.2306.26232. Unzip and launch default.aspx in IE. ...
by Beige
Thu Apr 01, 2010 11:24 am
Forum: .NET
Topic: Bar chart having massive data not displayed in IE
Replies: 4
Views: 6540

Bar chart having massive data not displayed in IE

I have multiple charts in my web page. When amount of data is less each chart is displayed properly. But if amount of data is too high, charts are not displayed properly or not at all. This happens to IE only. I have test with IE6 & IE7. Charts are displayed properly in Mozilla Firefox even for larg...
by Beige
Thu Mar 25, 2010 12:38 pm
Forum: .NET
Topic: Problem with tooltip in Bar Chart
Replies: 1
Views: 4009

Problem with tooltip in Bar Chart

In my ASP.net web page I have multiple charts of style bar. I want to show tooltip when mouse hovered on a bar, shows the Y value of the bar. For each chart I am doing the things like – Steema.TeeChart.Styles.Bar barD = new Steema.TeeChart.Styles.Bar(); chart.Series.Add(barD); . . . Steema.TeeChart....
by Beige
Mon Feb 22, 2010 2:32 pm
Forum: .NET
Topic: Print multiple charts in either single or multiple pages
Replies: 5
Views: 9095

Re: Print multiple charts in either single or multiple pages

Yes Biege, this works ok for windows form application. I need similar functionality for my asp.net web application. Is it possible to show windows forms in asp.net?
by Beige
Fri Feb 19, 2010 9:59 am
Forum: .NET
Topic: Print multiple charts in either single or multiple pages
Replies: 5
Views: 9095

Re: Print multiple charts in either single or multiple pages

thanks for reply. Good suggestion by Narcís. but it does not suggest any print preview. And one more point, how do I draw multiple chart in a single PrintPageEventArgs? Again System.Drawing.Printing.PrintDocument document.print(), prints whole document in a single page. How to print multiple page?
by Beige
Fri Feb 19, 2010 9:54 am
Forum: .NET
Topic: Printing Multiple Charts
Replies: 10
Views: 21200

Re: Printing Multiple Charts

I have same question as Mike. How do I get the pietest2.zip file. One more point I want to ask, how do I attach multiple chart in document_PrintPage function deescribed by Narcis.
by Beige
Thu Feb 18, 2010 12:06 pm
Forum: .NET
Topic: Print multiple charts in either single or multiple pages
Replies: 5
Views: 9095

Print multiple charts in either single or multiple pages

I am using TeeChart in my asp.net application. I am new to TeeChart and facing an issue as below. I want to print multiple charts either in single page or in multiple pages. Decision should be taken from print preview window taking care of selected paper size, orientation etc. I have tried by sendin...
by Beige
Wed Aug 19, 2009 8:22 pm
Forum: .NET
Topic: Take out right grid line
Replies: 1
Views: 3616

Take out right grid line

Hi,
We would like to know how to remove right grid scale line, so the plot is not too busy.
thanks ahead!
by Beige
Tue Aug 11, 2009 4:13 am
Forum: .NET
Topic: How to make logarithmic chart to center
Replies: 1
Views: 3896

How to make logarithmic chart to center

I used the code
Chart1.Axes.Left.Logarithmic = true;
to show chart with logarithmic, but the chart is way over the top (see attached chartLogarithmic), how can I let the chart display in center?

Thanks ahead
by Beige
Mon Jul 13, 2009 5:07 am
Forum: .NET
Topic: Different line style & resize depend on screen resolution
Replies: 3
Views: 5552

Re: Different line style & resize depend on screen resolution

So the chart style is LinePoint? Do this kind of style also apply on line or fastline?
by Beige
Fri Jul 10, 2009 12:54 pm
Forum: .NET
Topic: Different line style & resize depend on screen resolution
Replies: 3
Views: 5552

Different line style & resize depend on screen resolution

I would like to know the code behind this sample chart to have different line style
http://www.steema.com/img_products/gall ... 00x600.jpg

and how to resize chart depend detect user screen's resolution.

Thanks,
by Beige
Mon Jun 22, 2009 4:31 pm
Forum: .NET
Topic: Date format issue with bar and line on same chart
Replies: 3
Views: 5751

Re: Date format issue with bar and line on same chart

I think i figure out
by Beige
Mon Jun 22, 2009 3:55 pm
Forum: .NET
Topic: Date format issue with bar and line on same chart
Replies: 3
Views: 5751

Re: Date format issue with bar and line on same chart

my problem is more on for Xvalue in month format "MM/YYYY", does it treat as date formate or string format. If treat like a date format, line will try to divid X evenly by 30 days, so it shows 6/2009, 7/2009, 7/2009, the second 7/2009 actually is for day 7/31/2009. If it treat as string, how the sor...
by Beige
Mon Jun 22, 2009 2:21 pm
Forum: .NET
Topic: Date format issue with bar and line on same chart
Replies: 3
Views: 5751

Date format issue with bar and line on same chart

I need have monthly report display by bar and line series on same chart. The datasource return a datatable with 2 colums of YYYY-mm (monthly) and production loss for 12 months I formate botom lable to ch1.Axes.Bottom.Labels.DateTimeFormat = "MM/yyyy"; For bar chart if having bar1.YValues.DataMember ...