User (Legacy) Posted February 25, 2003 Report Share Posted February 25, 2003 Is there a way to smooth the edges of a pie chart. Have tried setting the TypeEx property but I am unsure if this is correct or even the right thing to do. Cheers Chris here is the code i am working with. ---------------------------------------------------------------------------- - <%@ Language=VBScript %> <% Option Explicit %> <!-- #include file="../einclude/common_utils.asp"--> <!-- #include virtual="/Include/CfxIE.inc" --> <!-- #include virtual="/Include/CfxIEExtra.inc" --> <% 'Create the chart object Dim oChart Set oChart = Server.CreateObject("ChartFX.WebServer") oChart.Chart3D = false oChart.Gallery = PIE 'White background oChart.RgbBk = RGB(255,255,255) oChart.Border = True oChart.OpenDataEX COD_CONSTANTS,2,0 oChart.ConstantLine(0).Style = CC_BACKONLY oChart.ConstantLine(1).Style = CC_BACKONLY oChart.ConstantLine(0).Value = 10 oChart.ConstantLine(0).LineColor = RGB(139,137,137) oChart.ConstantLine(0).Axis = AXIS_Y oChart.ConstantLine(0).Label = "Line 1" oChart.ConstantLine(0).LineWidth = 1 oChart.ConstantLine(1).Value = 50 oChart.ConstantLine(1).LineColor = RGB(139,137,137) oChart.ConstantLine(1).Axis = AXIS_Y oChart.ConstantLine(1).Label = "Line 2" oChart.ConstantLine(1).LineWidth = 1 oChart.CloseData COD_CONSTANTS oChart.TypeEx = oChart.TypeEx Or CTE_SMOOTH %> <%= oChart.GetHtmlTag("250","300","Image") %> Quote Link to comment Share on other sites More sharing options...
Software FX Posted February 25, 2003 Report Share Posted February 25, 2003 What do you mean by smoothing ? do you mean anti-aliasing ? anti-aliasing is only supported in Chart FX 6.x (for .NET). -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.