Skip to content

Commit dd3c736

Browse files
committedJan 17, 2020
fix: values size fix
1 parent ece31f0 commit dd3c736

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/charting/data/BaseDataSet.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export abstract class BaseDataSet<T extends Entry> implements IDataSet<T> {
104104
/**
105105
* the size of the value-text labels
106106
*/
107-
protected mValueTextSize = 17;
107+
protected mValueTextSize = 13;
108108

109109
/**
110110
* flag that indicates if the DataSet is visible or not
@@ -294,7 +294,7 @@ export abstract class BaseDataSet<T extends Entry> implements IDataSet<T> {
294294
}
295295

296296
public setValueTextSize(size) {
297-
this.mValueTextSize = Utils.convertDpToPixel(size);
297+
this.mValueTextSize = size;
298298
}
299299

300300
public getValueTextColor(index = 0) {

0 commit comments

Comments
 (0)
Please sign in to comment.