-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8784430
commit 9c431af
Showing
101 changed files
with
3,303 additions
and
1,221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/*************************************************************************************** | ||
DocX – DocX is the community edition of Xceed Words for .NET | ||
Copyright (C) 2009-2020 Xceed Software Inc. | ||
This program is provided to you under the terms of the XCEED SOFTWARE, INC. | ||
COMMUNITY LICENSE AGREEMENT (for non-commercial use) as published at | ||
https://github.com/xceedsoftware/DocX/blob/master/license.md | ||
For more features and fast professional support, | ||
pick up Xceed Words for .NET at https://xceed.com/xceed-words-for-net/ | ||
*************************************************************************************/ | ||
|
||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Xml.Linq; | ||
|
||
namespace Xceed.Document.NET | ||
{ | ||
/// <summary> | ||
/// Represents Category Axis | ||
/// </summary> | ||
public class CategoryAxis : Axis | ||
{ | ||
internal CategoryAxis(XElement xml) | ||
: base(xml) | ||
{ | ||
} | ||
|
||
public CategoryAxis(String id) | ||
: base(id) | ||
{ | ||
Xml = XElement.Parse(String.Format( | ||
@"<c:catAx xmlns:c=""http://schemas.openxmlformats.org/drawingml/2006/chart""> | ||
<c:axId val=""{0}""/> | ||
<c:scaling> | ||
<c:orientation val=""minMax""/> | ||
</c:scaling> | ||
<c:delete val=""0""/> | ||
<c:axPos val=""b""/> | ||
<c:majorTickMark val=""out""/> | ||
<c:minorTickMark val=""none""/> | ||
<c:tickLblPos val=""nextTo""/> | ||
<c:crossAx val=""154227840""/> | ||
<c:crosses val=""autoZero""/> | ||
<c:auto val=""1""/> | ||
<c:lblAlgn val=""ctr""/> | ||
<c:lblOffset val=""100""/> | ||
<c:noMultiLvlLbl val=""0""/> | ||
</c:catAx>", id)); | ||
} | ||
} | ||
} |
Oops, something went wrong.