ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

[Chart] [CategoricalAxis] how to show last items of each part #1458

Closed dainv123 closed 4 years ago

dainv123 commented 4 years ago

Hello all, i have a question about "nativescript-ui-chart": "^7.1.1", i have 30 items but i wanna show 3 items (last item of each cycle 1/3) by set <CategoricalAxis tkCartesianHorizontalAxis majorTickInterval="10"></CategoricalAxis> but actualy, it gets first items of each part Ex: current day is 30th => (1 => 10) (11 => 20) (21 => 30) => {1, 11, 21} my expected: => {10, 20, 30}

Is there any way to do this?