We were using Teechart 2005 .net. Would like to upgrade to Tee Chart 2016. So i downloaded 2016 , i could not figure out which component or chart to use to draw this graph. Is it possible to draw a stack graph without any margin , axis and border.
Thanks in advance.
Tee Chart .net / ASP.net
Tee Chart .net / ASP.net
- Attachments
-
- graph1.png (12.4 KiB) Viewed 14624 times
Re: Tee Chart .net / ASP.net
Hello rpt,
You can set not visible the axis pen as do code below to show the chart in your end:
Hoping this helps you
Thanks in advance
You can set not visible the axis pen as do code below to show the chart in your end:
Code: Select all
tChart1.Axes.Left.AxisPen.Visible = false;
tChart1.Axes.Bottom.AxisPen.Visible = false;
Thanks in advance
Best Regards,
Sandra Pazos / 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 |
Re: Tee Chart .net / ASP.net
Thank you for help Sandra.
Yes , this part i got it . here in the attached image. Can you please help me to how i should approach the missing part in between stacked graph
Yes , this part i got it . here in the attached image. Can you please help me to how i should approach the missing part in between stacked graph
- Attachments
-
- graph3.png (13.83 KiB) Viewed 14590 times
Re: Tee Chart .net / ASP.net
Hello rpt,
I have attached for you two applications, one in Teechart.Net c# and the other Teechart.Net in Asp.net where you show how can do your request.
Teechart.Net Example TeeChart.Net in Asp.Net example Hoping these help you.
Thanks in advance
I have attached for you two applications, one in Teechart.Net c# and the other Teechart.Net in Asp.net where you show how can do your request.
Teechart.Net Example TeeChart.Net in Asp.Net example Hoping these help you.
Thanks in advance
Best Regards,
Sandra Pazos / 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 |
Re: Tee Chart .net / ASP.net
Thanks for your help. I am able to draw 2 bar graph with random values adding upto 100.
What i would like is to draw in between 2 bars . As shown in figure i want to draw line and then fill them with some color
or if possible i can place a another chart and lower the z index ( i am not sure if this is possible)
Can you point me to API reference help or some tutorials
What i would like is to draw in between 2 bars . As shown in figure i want to draw line and then fill them with some color
or if possible i can place a another chart and lower the z index ( i am not sure if this is possible)
Can you point me to API reference help or some tutorials
- Attachments
-
- graph4.png (64.32 KiB) Viewed 14561 times
Re: Tee Chart .net / ASP.net
Hello rpt,
I think can be useful for you, use a SeriesBandTool. Attached you find a simple example shows you how can do that.
Hoping this helps
Thanks in advance
I think can be useful for you, use a SeriesBandTool. Attached you find a simple example shows you how can do that.
Hoping this helps
Thanks in advance
Best Regards,
Sandra Pazos / 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 |
Re: Tee Chart .net / ASP.net
thanks for the help. I could able to get a chart very close . but i am missing labels at top and Also i need to make Y axis ( 0,25,50,75,100)
I did by inheriting Bar class. But doing so my designer is not working. Is there a way to fix it.
I did by inheriting Bar class. But doing so my designer is not working. Is there a way to fix it.
- Attachments
-
- graph5.png (10.17 KiB) Viewed 14515 times
Re: Tee Chart .net / ASP.net
Hello rpt,
To fix the problem you're experiencing you need only change the MarkStyle Value. The code below shows you how:
Hoping this helps you
Thanks in advance
To fix the problem you're experiencing you need only change the MarkStyle Value. The code below shows you how:
Code: Select all
bar.Marks.Style = Steema.TeeChart.Styles.MarksStyles.Value;
Thanks in advance
Best Regards,
Sandra Pazos / 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 |