ChartSeriesPointExtensions.GetBubblePoint<T, TValue, TSize>(ChartTooltipData, Expression<Func<T, TValue>>, Expression<Func<T, TSize>>) Method
In This Article
Returns a bubble series point based on the given expression.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
public static ChartBubbleSeriesPoint<TValue, TSize> GetBubblePoint<T, TValue, TSize>(
this ChartTooltipData tooltip,
Expression<Func<T, TValue>> valueFieldExpression,
Expression<Func<T, TSize>> sizeFieldExpression
)
#Parameters
Name | Type | Description |
---|---|---|
tooltip | Chart |
A context for a chart tooltip. |
value |
Expression<Func<T, TValue>> | A lambda expression that returns the name of a data source field that contains the bubble series values. |
size |
Expression<Func<T, TSize>> | A lambda expression that returns the name of a data source field that contains sizes for bubbles. |
#Type Parameters
Name | Description |
---|---|
T | The type of data. |
TValue | The type of values. |
TSize | The type of the bubble size. |
#Returns
Type | Description |
---|---|
Chart |
A bubble series point. |
See Also