G
gerardp
i can't seem to understand why owc10 would not return my desired chart
type when exporting it to an image file...
With myChart
c = .Constants
.Clear()
.DataSource = myCube
.PlotAllAggregates =
OWC10.ChartPlotAggregatesEnum.chPlotAggregatesSeries
With .Charts(0)
.Type = OWC10.ChartChartTypeEnum.chChartTypeColumn3D
.HasLegend = True
.HasTitle = False
.WidthRatio = 200
.HeightRatio = 200
End With
.Interior.Color = "#fff8dc"
.Repaint()
.PrintQuality3D = 1.0
.ExportPicture(Server.MapPath("/images/graph/test.jpg"),
"jpg", 600, 400)
End With
It always return 1 type of chart w/c the very basic one. i tried
changing the chart type but i still get the same result.
please help
type when exporting it to an image file...
With myChart
c = .Constants
.Clear()
.DataSource = myCube
.PlotAllAggregates =
OWC10.ChartPlotAggregatesEnum.chPlotAggregatesSeries
With .Charts(0)
.Type = OWC10.ChartChartTypeEnum.chChartTypeColumn3D
.HasLegend = True
.HasTitle = False
.WidthRatio = 200
.HeightRatio = 200
End With
.Interior.Color = "#fff8dc"
.Repaint()
.PrintQuality3D = 1.0
.ExportPicture(Server.MapPath("/images/graph/test.jpg"),
"jpg", 600, 400)
End With
It always return 1 type of chart w/c the very basic one. i tried
changing the chart type but i still get the same result.
please help