Esempio n. 1
0
 /// <summary>
 /// Sets the title for axis and returns the updated current instance of <see cref="MdxAxis"/>.
 /// </summary>
 /// <param name="type">Axis type.</param>
 /// <returns>Returns the updated current instance of <see cref="MdxAxis"/>.</returns>
 public MdxAxis Titled(MdxAxisType type)
 {
     AxisIdentifier = type;
     return this;
 }
Esempio n. 2
0
 /// <summary>
 /// Creates a new instance of <see cref="MdxAxis"/> with specified typed-title.
 /// </summary>
 /// <param name="type">Axis title-type.</param>
 /// <returns>Returns instance of <see cref="MdxAxis"/>.</returns>
 public static MdxAxis Axis(MdxAxisType type)
 {
     return(Axis().Titled(type));
 }
Esempio n. 3
0
 /// <summary>
 /// Sets the title for axis and returns the updated current instance of <see cref="MdxAxis"/>.
 /// </summary>
 /// <param name="type">Axis type.</param>
 /// <returns>Returns the updated current instance of <see cref="MdxAxis"/>.</returns>
 public MdxAxis Titled(MdxAxisType type)
 {
     AxisIdentifier = type;
     return(this);
 }