User (Legacy) Posted September 12, 2002 Report Posted September 12, 2002 Hi, I am still having problems getting my serires legend to be displayed when I export the chart as a metafile either through the getpicture function or the export function. I have tried adding this code to the samples and it doesn't even work there? What do I need to do to ensure that the series legend gets written to the metafile? Could someone give me an example? Thanks in advance. -Mac
Software FX Posted September 13, 2002 Report Posted September 13, 2002 What code are you adding ? The following sample works when applied to a default chart: Private Sub Command1_Click() ChartFX1.SerLeg(0) = "Series 1" ChartFX1.SerLeg(1) = "Series 2" ChartFX1.SerLegBox = True Picture1.Picture = ChartFX1.GetPicture(CHART_METAFILE) End Sub -- FP Software FX, Inc.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.