Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Different code between github and pod #1018

Closed
ghost opened this issue May 11, 2016 · 0 comments
Closed

Different code between github and pod #1018

ghost opened this issue May 11, 2016 · 0 comments

Comments

@ghost
Copy link

ghost commented May 11, 2016

Hi, why pod 'Charts' Code is different than github ?
Exemple with IPieChartDataSet interface :

Pod :

@objc
public protocol IPieChartDataSet: IChartDataSet
{
// MARK: - Styling functions and accessors

/// the space in pixels between the pie-slices
/// **default**: 0
/// **maximum**: 20
var sliceSpace: CGFloat { get set }

/// indicates the selection distance of a pie slice
var selectionShift: CGFloat { get set }

}

and GitHub :

@objc
public protocol IPieChartDataSet: IChartDataSet
{
// MARK: - Styling functions and accessors

/// the space in pixels between the pie-slices
/// **default**: 0
/// **maximum**: 20
var sliceSpace: CGFloat { get set }

/// indicates the selection distance of a pie slice
var selectionShift: CGFloat { get set }

var xValuePosition: PieChartDataSet.ValuePosition { get set }
var yValuePosition: PieChartDataSet.ValuePosition { get set }

/// When valuePosition is OutsideSlice, indicates line color
var valueLineColor: NSUIColor? { get set }

/// When valuePosition is OutsideSlice, indicates line width
var valueLineWidth: CGFloat { get set } 

....

Please help, i need to use xValuePosition but not present in pod.

Thanks

@ghost ghost closed this as completed May 11, 2016
This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants