我有一个案例,我需要在图表上定位自定义标签。我知道下面的jQuery完成了这项工作,但我需要从代码背后做到这一点。我看到了highchart codeplex(http://highcharts.codeplex.com/)来获取Labels / Items类,但它并不存在。更多的是我写了我自己的课程如下,但没有运气。
Jquery的
labels: { items : [{ html : labelme ,style : { left: '10px',top: '300px'}}] }
C#各个班级
Labels Class:
namespace Test.Core
{ [序列化]
public class Labels
{
public CSSObject style { get; set; }
public Items items { get; set; }
public Labels()
{
}
}
项目类:
namespace Test.Core
{
[Serializable]
public class Items
{
public CSSObject style { get; set; }
public string html { get; set; }
public Items()
{
}
}
}
创建图表实例时,我会写下代码:
chart = new LineChart
{
Labels = new IMCharts.src.HighchartsNet.Labels.Labels
{
items = new Items
{
html = "90 days mean change is 27%",
style = new CSSObject { top = "100px", left = "100px" }
},
style = new CSSObject { color = "#3E576F" }
}
}
如果此处有任何问题,请告知我们,或者非常感谢任何帮助。
由于 Purush