HTML Text – SVG n’apparait plus dans une App Canvas
-
HTML Text – SVG n’apparait plus dans une App Canvas
Bonjour à tous,
Je rencontre actuellement un problème avec l’affichage d’un bargraph SVG dans un composant HTML d’une application Canvas.
Jusqu’à hier soir, tout fonctionnait parfaitement sans que je ne fasse de modifications particulières.Pourtant j’utilise cette technique à d’autres endroits dans mon application sans problème.
Pour investiguer, j’ai tenté de créer un composant HTML simplifié avec un SVG “basique”, mais cela ne fonctionne pas non plus. Cela me laisse penser qu’il pourrait s’agir d’un problème plus global.
Auriez vous aussi cette problèmatique ?
Avez-vous trouvé une solution ou une piste d’explication ?Ci-dessous le code intégré à mon composant Html
<pre class=”language-markup”>
"<svg width='"&Container_SdToIdentify_13.Width&"' height='"&Round(HtmlText1_4.Height;0)-20&" '>
<!-- Fond de l'élement HTML -->
<rect x='0' y='10' width='"& Container_SdToIdentify_13.Width &"' height='"&Round(HtmlText1_4.Height;0)&"' rx='4' ry='4' fill='#D9D9D9' /><!-- Bar graph objectif -->
<rect x='0' y='10' width='"& Round((Value(Label9_69.Text) * Round(Container_SdToIdentify_13.Width;0))/Round(Value(Last(Filter(type_product;ID=Last(Filter(type_product;ID=Last(Filter(OEE_Shift_Settings;punit_ID=Last(Current_punit).ID)).TypeProduct_ID)).ID)).theoreticalRate)*(Current_DurationShift/60);0);0) &"' height='"&Round(HtmlText1_4.Height;0)&"' rx='4' ry='4' fill='#F84040'/><!-- Bar graph quantité -->
<rect x='0' y='10' width='"& Round((Last(Filter(Shift_TempCounterOK;Period="Team")).TotalValue * Round(Container_SdToIdentify_13.Width;0))/Round(Value(Last(Filter(type_product;ID=Last(Filter(type_product;ID=Last(Filter(OEE_Shift_Settings;punit_ID=Last(Current_punit).ID)).TypeProduct_ID)).ID)).theoreticalRate)*(Current_DurationShift/60);0);0) &"' height='"&Round(HtmlText1_4.Height;0)&"' rx='4' ry='4' fill='#52CF7F'/><line x1='"& Round((Value(Label9_69.Text) * Round(Container_SdToIdentify_13.Width;0))/Round(Value(Last(Filter(type_product;ID=Last(Filter(type_product;ID=Last(Filter(OEE_Shift_Settings;punit_ID=Last(Current_punit).ID)).TypeProduct_ID)).ID)).theoreticalRate)*(Current_DurationShift/60);0);0) &"'
y1='0'
x2='"& Round((Value(Label9_69.Text) * Round(Container_SdToIdentify_13.Width;0))/Round(Value(Last(Filter(type_product;ID=Last(Filter(type_product;ID=Last(Filter(OEE_Shift_Settings;punit_ID=Last(Current_punit).ID)).TypeProduct_ID)).ID)).theoreticalRate)*(Current_DurationShift/60);0);0) &"'
y2='"& Round(HtmlText1_4.Height;0) &"'
stroke='white'
stroke-width='2'
stroke-dasharray='5,5'
/></svg>"
J’ai remarqué que un autres utilisateurs semblent rencontrer le même problème
HTML Text – SVG Suddenly Don’t show in Canvas app
Mais aucune réponse intéressantesMerci d’avance pour votre aide !
Connectez-vous pour répondre.