mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
* Render chart tooltips in the same way as standard tooltips * Move OpenChartTooltip method to TooltipService to avoid code duplications * Avoid partially hiding of chart tooltip near top of page * Make some of the types internal. --------- Co-authored-by: Atanas Korchev <akorchev@gmail.com>
14 lines
523 B
Plaintext
14 lines
523 B
Plaintext
<RadzenDialog @attributes="Attributes" />
|
|
<RadzenNotification @attributes="Attributes" />
|
|
<RadzenContextMenu @attributes="Attributes" />
|
|
<RadzenTooltip @attributes="Attributes" />
|
|
<RadzenChartTooltip @attributes="Attributes" />
|
|
|
|
@code {
|
|
/// <summary>
|
|
/// Specifies additional custom attributes that will be rendered by the component.
|
|
/// </summary>
|
|
/// <value>The attributes.</value>
|
|
[Parameter(CaptureUnmatchedValues = true)]
|
|
public IReadOnlyDictionary<string, object> Attributes { get; set; }
|
|
} |