2013-05-09 2 views
1

PlotLines 레이블 지정 방법이 가능한지 궁금합니다. 직접 선에 라벨을 지정하거나 범례에 항목을 추가하십시오. 나는 길을 찾으려고했지만, 아직 길을 찾지 못했습니다.Highcharts DotNet : Plotlines에 레이블을 붙이는 것이 가능합니까?

new XAxisPlotLines 
{ 
    Value = upperspec, 
    Color = System.Drawing.Color.Red, 
    DashStyle = DotNet.Highcharts.Enums.DashStyles.ShortDash, 
    Width = 2, 
    Label = new XAxisLabels { Text = "Label Here" } // This does not work, but I want something with this functionality 
} 

고마워요! 질문에 오해가있을 경우 알려주십시오.

편집
스크린 샷 enter image description here

답변

0

이 시도 : 그것은 플롯 라인에 텍스트를 추가하는 것이 가능 DotNet.Highcharts 라이브러리의 최신 버전 2.0

Title = new XAxisTitle { Text = "Label here" }, 
... 
*PlotLines = new[] 
{ 
    new XAxisPlotLines 
    { 
     ... 
    } 
}* 
... 
+0

답장을 보내 주셔서 감사합니다.하지만 그건 내가 원하는 것만은 아닙니다. 그 put은 XAxis에 제목이 있지만, 줄거리 옆에 제목이 있습니다. 스크린 샷으로 업데이트하겠습니다. – AustinT

1

. 예를 들어 :

new YAxisPlotLines 
{ 
    Value = 932, 
    Color = Color.FromName("red"), 
    Width = 1, 
    Label = new YAxisPlotLinesLabel 
     { 
      Text = "Theoretical mean: 932", 
      Align = HorizontalAligns.Center, 
      Style = "color: 'gray'" 
     } 
} 

또한이 샘플 프로젝트에서 어떻게 사용되는지 볼 수 있습니다. 여기에서 다운로드하십시오 : http://dotnethighcharts.codeplex.com/releases