Hello HemanthKumar,
These numbers are appearing on the circular scale in the next concentric circular space which is been marked red for your reference
Assuming, the numbers 1..9, etc. are Text views arranged in AdjustLabel method, I would review this method. In fact, I have no idea how the numbers are displayed in your application. Possibly some if condition is needed to display the numbers only for the values 10, 20, 30, ... For example:
var int32 v = ...
// Is v equal 10, 20, 30, ...
if ( !( v % 10 ))
{
... arrange a text view for the value v
}
Best regards
Paul Banach