Answers for "histogram nativescript"

0

histogram nativescript

<navigation:ExamplePage xmlns:navigation="navigation/example-page" loaded="onPageLoaded" xmlns:chart="nativescript-ui-chart" xmlns="http://www.nativescript.org/tns.xsd">
      <chart:RadCartesianChart>

            <chart:RadCartesianChart.verticalAxis>
                <chart:LinearAxis horizontalLocation="Left" labelSize="11" />
            </chart:RadCartesianChart.verticalAxis>

            <chart:RadCartesianChart.horizontalAxis>
                <chart:CategoricalAxis verticalLocation="Bottom" labelSize="11" />
            </chart:RadCartesianChart.horizontalAxis>

            <chart:RadCartesianChart.series>
                <chart:RangeBarSeries
                     showLabels="true"
                     categoryProperty="Name"
                     lowPropertyName="Low"
                     highPropertyName="High"
                     items="{{ rangeBarSource }}">
                </chart:RangeBarSeries>
            </chart:RadCartesianChart.series>
        </chart:RadCartesianChart>
</navigation:ExamplePage>
Posted by: Guest on April-10-2020

Code answers related to "histogram nativescript"

Browse Popular Code Answers by Language