chart_iq 0.0.15 chart_iq: ^0.0.15 copied to clipboard
Flutter SDK for the ChartIQ JavaScript library. The ChartIQ Flutter SDK supports a basic charting application.
ChartIQ-Flutter-SDK #
import 'package:chart_iq/chart_iq.dart';
...
ChartIQView(
chartIQUrl: _chartIQUrl, // url to ChartIQ library
onPullInitialData: (dataCallback) {
// Provide initial data for chart
},
onPullUpdateData: (dataCallback) {
// Provide update data for chart
},
onPullPaginationData: (dataCallback) {
// Provide pagination data for chart
},
onChartIQViewCreated: (controller) {
// ChartIQView created and ready to use
},
)
For more please check our example app.