示例#1
0
        /// <summary>
        /// create the graphic property
        /// </summary>
        /// <param name="style"></param>
        /// <param name="node"></param>
        /// <returns></returns>

        public ChartGraphicProperties CreateGraphicProperties(IStyle style, XmlNode node)
        {
            ChartGraphicProperties graphicProperty = new ChartGraphicProperties(style);

            graphicProperty.Node = node;

            return(graphicProperty);
        }
示例#2
0
        /// <summary>
        /// create the graphic property
        /// </summary>
        /// <param name="style"></param>
        /// <param name="node"></param>
        /// <returns></returns>
        public ChartGraphicProperties CreateGraphicProperties(IStyle style, XElement node)
        {
            ChartGraphicProperties graphicProperty = new ChartGraphicProperties(style)
            {
                Node = node
            };

            return(graphicProperty);
        }