[ZedGraph] Avoir une ligne horizontale

Fermé
afrodje Messages postés 759 Date d'inscription mardi 13 mars 2007 Statut Membre Dernière intervention 22 janvier 2014 - 24 avril 2008 à 15:58
 stef95 - 7 janv. 2010 à 16:55
Salut.

J'utilise la librairie ZedGraph qui permet de faire des graphiques.
Je cherche à ajouter une ligne horizontale (une sorte de limite).

J'ai trouver ce code sur le site officiel de ZedGraph :
Code :

' Add some text inside the above box to indicate "Peak Range"
   text = New TextObj("Peak Range", 1170, 105)
   text.Location.CoordinateFrame = CoordType.AxisXYScale
   text.Location.AlignH = AlignH.Right
   text.Location.AlignV = AlignV.Center
   text.FontSpec.IsItalic = True
   text.FontSpec.IsBold = False
   text.FontSpec.Fill.IsVisible = False
   text.FontSpec.Border.IsVisible = False
   myPane.GraphObjList.Add(text)



Mais je n'ai que l'intitulé "Peak Range" (pas de ligne).

Voici leur exemple avec une ligne comme ordonnée 105:

https://d39f23jfph0ylk.cloudfront.net/zedgraph.org.png

Merci
A voir également:

2 réponses

afrodje Messages postés 759 Date d'inscription mardi 13 mars 2007 Statut Membre Dernière intervention 22 janvier 2014 168
19 mai 2008 à 14:53
Toujours pas d'idée?
0
c'est normal, l'objet que vous insérez est uniquement un texte. Pour avori une ligne, c'est l'objet LineObj
0