Error 1 The value StackedArea100 was marked inline but its implementation makes use of an internal or private function which is not sufficiently accessible
从…起
type FSharpChart =
/// Displays multiple seriesÿof data as stacked areas. The cumulative proportion
/// of each stacked element is always 100% of the Y
/// axis.
static member StackedArea100< TY when TY :> IConvertible>(data: seq< TY>) =
GenericChart<_>.Create<StackedArea100Chart>(oneY data)
/// Displays multiple seriesÿof data as stacked areas. The cumulative proportion
/// of each stacked element is always 100% of the Y
/// axis.
static member inline StackedArea100< TX, TY when TX :> IConvertible and TY :> IConvertible>(data:seq< TX * ( TY)>) =
GenericChart<_>.Create<StackedArea100Chart>(oneXYSeq data)
/// Displays multiple seriesÿof data as stacked areas. The cumulative proportion
/// of each stacked element is always 100% of the Y
/// axis.
有人能告诉我发生了什么事吗?谢谢