MSChart 模板 xml 的架构是什么?

发布于 2024-08-15 02:23:33 字数 524 浏览 2 评论 0原文

有人知道在哪里可以找到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人如玉 2024-08-22 02:23:33

我还没有找到模板 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文