Hallo Sven,
habe im MSDn folgendes gefunden um Errorbars darzustellen:
Sub AddErrorBars()
Dim chConstants
Dim ebCollection
Dim ebSeries1
Set chConstants = ChartSpace1.Constants
' Set a variable to the collection of error bars for
' the first series in the first chart of Chartspace1.
Set ebCollection = ChartSpace1.Charts(0).SeriesCollection(0).ErrorBarsCollection
' Add error bars to the chart.
ebCollection.Add
' Set a variable to the error bars for the data series.
Set ebSeries1 = ebCollection.Item(0)
' Set the error bars so that they represent a certain
' percentage of the value of a data point.
ebSeries1.Type = chConstants.chErrorBarTypePercent
' The error bars represent 5% of a data point.
ebSeries1.Amount = 0.05
End Sub
Wie bekomme ich das nach Jscript übersetzt und kann ich es überhaupt anwenden
Danke nochmals und Gruß,
Nici
habe im MSDn folgendes gefunden um Errorbars darzustellen:
Sub AddErrorBars()
Dim chConstants
Dim ebCollection
Dim ebSeries1
Set chConstants = ChartSpace1.Constants
' Set a variable to the collection of error bars for
' the first series in the first chart of Chartspace1.
Set ebCollection = ChartSpace1.Charts(0).SeriesCollection(0).ErrorBarsCollection
' Add error bars to the chart.
ebCollection.Add
' Set a variable to the error bars for the data series.
Set ebSeries1 = ebCollection.Item(0)
' Set the error bars so that they represent a certain
' percentage of the value of a data point.
ebSeries1.Type = chConstants.chErrorBarTypePercent
' The error bars represent 5% of a data point.
ebSeries1.Amount = 0.05
End Sub
Wie bekomme ich das nach Jscript übersetzt und kann ich es überhaupt anwenden
Danke nochmals und Gruß,
Nici