ant-design-blazor / ant-design-blazor/ant-design-charts-blazor

I can't make the bubble chart to display the bubbles

Ouverte
#58 0 commentaires 0 réactions 0 personnes assignées Voir sur GitHub
Langage dominant
C#
Étoiles
186
Forks
44
Métriques de merge des PR
Aucune PR mergée en 30 j

Description

First of all thank you for the librairy it's so great.

I can't make the bubble chart work. Honestly someone should update the bubble chart exemple because i just cant find the pattern to make it work and im probably not alone i pass nearly 3 hour. I tried so many values in parameters i'm just totally lost. I succesfully make nearly all the charts to work except this one. There is just nothing that appear on the chart.

```

Earnings.Add(new
{
YField = earning.EpsEstimated,
XField = i,
size = 9269612,
type = "Estimated"
});

Earnings.Add(new
{
YField = earning.Eps,
XField = i,
size = 9269612,
type = "Actual"
});
private readonly BubbleConfig config1 = new BubbleConfig
{
YField = "YField",
XField = "XField",
SizeField = "size",
ColorField = new[] { "type" },
Color = new[] { "blue", "red" },
XAxis = new ValueTimeAxis
{
Visible = true,
Min = -5,
Max = 5,
},
YAxis = new ValueTimeAxis
{
Visible = true,
Min = -5,
Max = 5
}
};
```

Guide de contribution

Aucun guide de contribution indexé pour ce dépôt

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.