react-native-echarts-wrapper
react-native-echarts-wrapper copied to clipboard
setting range for y axis when its type is 'value'
Thank you for making this! I am having trouble setting a custom range for the y axis, when its type is a value. Can I set a custom range, e.g. min 50 & max 100?
const option = {
xAxis: {
type: 'category',
data: data5,
},
yAxis: {
type: 'value',
},
series: [{
data: data2,
type: 'line',
}]
};