MSChart 模板 xml 的架构是什么?
有人知道在哪里可以找到 System.Web.UI.DataVisualization.Charting 中使用的模板的架构吗?
背景资料: 在对象 System.Web.UI.DataVisualization.Charting.Chart
中,您可以加载用作图表模板的 XML 文件。这里是一个使用它的 VB 调用。我将其放入我的问题中,以便任何搜索的人都可以在这里找到答案。
Chart1.LoadTemplate(Template.SelectedItem.Value + ".xml")
有关该方法的 Microsoft MSDN 文章链接:图表.. ::.LoadTemplate Method (String)
额外奖励:你使用模板吗?您能否向我指出我应该了解的特定于模板的在线资源?
Anyone know where to find the schema for templates used in System.Web.UI.DataVisualization.Charting
?
Background info:
In object System.Web.UI.DataVisualization.Charting.Chart
, you can load an XML file that serves as a template for your charts. Here would be a VB call to use it. I am putting this in my question so anyone searching can find the answers here.
Chart1.LoadTemplate(Template.SelectedItem.Value + ".xml")
Link to Microsoft's MSDN article regarding the method: Chart..::.LoadTemplate Method (String)
Extra bonus: do you use templates? Can you point me to online resources that I should know about specific to templating?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有找到模板 XML 的实际定义。相反,我根据需要设置图表的属性,然后将属性保存为模板。一旦获得该文件,我就可以对其进行修改,使其更像一个可供其他类似图表对象使用的真实模板。
有关保存的 Microsoft 文章
I have not found the actual definition of the template XML. Instead, I set the properties of my chart as I needed it and then saved the properties as a template. Once I had the file then I can modify it to make it more like a real template that can be used by other similar chart objects.
Microsoft Article on Save