Giter VIP home page Giter VIP logo

Comments (3)

translibrius avatar translibrius commented on May 25, 2024 3

@marc-wilson Hey you can set handleBuiltInTouches to false, which will not draw anything associated with touch events. Then you can build your custom functionality by listening to the events. Heres how I do it:

LineTouchData getLineTouchData() {
    return LineTouchData(
      touchTooltipData: LineTouchTooltipData(
        tooltipBgColor: Colors.blueGrey.withOpacity(0.8),
        tooltipMargin: 100,
      ),
      touchCallback: (FlTouchEvent event, LineTouchResponse? response) {
        if (response == null || response.lineBarSpots == null) {
          return;
        }
        final index = response.lineBarSpots!.first.spotIndex;

        if (event is FlPanStartEvent) {
          ref.read(signalChartProvider.notifier).startDrag(index);
        } else if (event is FlPanUpdateEvent) {
          ref.read(signalChartProvider.notifier).updateDrag(index);
          ref.read(signalChartProvider.notifier).toggleSpotSelectionDuringDrag(index);
        } else if (event is FlPanEndEvent) {
          ref.read(signalChartProvider.notifier).endDrag();
        } else if (event is FlTapUpEvent) {
          ref.read(signalChartProvider.notifier).toggleSpotSelection(index);
        } else if (event is FlPointerHoverEvent) {
          ref.read(signalChartProvider.notifier).updateHover(index);
        } else if (event is FlPointerExitEvent) {
          ref.read(signalChartProvider.notifier).updateHover(-1);
        }
      },
      handleBuiltInTouches: false,
    );
  }

Then I would manually draw the vertical lines as ExtraLinesData:

ExtraLinesData getExtraLinesData(SignalChartState state) {
    return ExtraLinesData(
      extraLinesOnTop: true,
      verticalLines: [
        if (state.dragStartIndex != null)
          VerticalLine(
            x: state.dragStartIndex!.toDouble(),
            color: Colors.black,
            strokeWidth: 2,
          ),
        if (state.hoverIndex != null)
          VerticalLine(
            x: state.hoverIndex!.toDouble(),
            color: Colors.black,
            strokeWidth: 2,
          ),
      ],
    );
  }

P.S Keep in mind I'm using riverbud for updating the widget, but you can use setState() instead if you don't :)

from fl_chart.

marc-wilson avatar marc-wilson commented on May 25, 2024

Co-pilot told me how to do it... not very intuitive, but it works. Is there a better solution than just making everything transparent in color to "hide" it?


                      getTouchedSpotIndicator: (barData, spotIndexes) {
                        return spotIndexes.map((spotIndex) {
                          final FlSpot spot = barData.spots[spotIndex];
                          if (spot.x == 0 || spot.x == barData.spots.length - 1)
                            return null;
                          return TouchedSpotIndicatorData(
                            const FlLine(
                              color: Colors.white,
                              strokeWidth: 1,
                            ),
                            FlDotData(
                              show: true,
                              getDotPainter: (spot, percent, barData, index) {
                                return FlDotCirclePainter(
                                  radius: 4,
                                  color: Colors.transparent,
                                  strokeWidth: 1,
                                  strokeColor: Colors.transparent,
                                );
                              },
                            ),
                          );
                        }).toList();
                      },

from fl_chart.

imaNNeo avatar imaNNeo commented on May 25, 2024

@translibrius's solution works

from fl_chart.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.