WAPlots.CreatePlotVB6
Jump to navigation
Jump to search
Member of: SynthesisAPI.WAPlots
Returns a bitmap object that represents the plot. (VBA/VB6 only.)
The data set must first be analyzed (with either the WeibullDataSet.Calculate or ALTADataSet.Calculate method) before it can be plotted.
Syntax
.CreatePlotVB6(PlotType, UserSettings, Width, Height)
Parameters
PlotType
- Required. The type of plot to create. Can be any WAPlotType constant.
UserSettings
- Optional. The WAPlotSettings object that represents the plot's settings.
Width
- Optional. Integer. The plot width. Default value = 1150 pixels.
Height
- Optional. Integer. The plot height. Default value = 800 pixels.
Example
VBA 'Declare a WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add failures to the data set. Call WDS.AddFailure(1, 1) Call WDS.AddFailure(2, 1) Call WDS.AddFailure(3, 1) 'Fit the data to the life distribution, using all default analysis settings. WDS.Calculate 'Create a WAPlots object. Dim MyPlot As New WAPlots 'Add the calculated data set to the plot. Call MyPlot.AddDataset(WDS) 'Create a Probability plot and display it. This example assumes that an image object called "Image1" 'already exists in the active Excel sheet. Set Image1.Picture = MyPlot.CreatePlotVB6(WAPlotType_Probability)