/// <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; }
/// <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)); }
/// <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); }