问题标签 [lineseries]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
qt - Get the name of a QML ChartView LineSeries when the LineSeries is clicked
I created a program that reads stock data (time series) from the internet and displays it in a QML ChartView. After I add all the line series that I want, I can delete them by clicking a button.
I would like to know if it is possible to delete the line series by clicking at ANY point in the line series?
I am adding the series dynamically like this:
I don't want to crowd too much my post so I won't post ALL the files, however:
- dateTimeAxis_chartView_xAxis is a DateTimeAxis QML type inside the main ChartView QML typ with id: chartView
- valueAxis_chartView_yAxis is a ValueAxis QML type inside the main ChartView QML typ with id: chartView
- stockChart is the id of a StockChart QML Type imported from C++
lineSeriesClicked is this function:
/li>lineSeriesHovered is this function:
/li>
Now, in the log I see all the correct data, e.g., when hovered:
when clicked:
Looking at XYSeries QML Type (https://doc.qt.io/qt-5/qml-qtcharts-xyseries.html#clicked-signal), the clicked signal that I am using only passes the a point.
Is there any way to get the name of the line series where the point data was obtained to be able to delete this series? Perhaps through some sort of context access or "this" keyword?
Thank you very much!!!
qt - QML,在运行时创建 LineSeries
我的目标是在运行时添加ChartView
一个可变数量的QML。在用户选择并加载包含数据的文件之前,尚不清楚需要添加LineSeries
多少。LineSeries
我试图创建所有LineSeries
内部 a Repeater
,但没有运气。我怀疑这是因为ChartView
不知道如何处理一堆Item
's。由于 a对's不起作用,因此无法直接Repeater
创建:LineSeries
Repeater
QObject
在我在网上看到的例子中,每一个LineSeries
都是硬编码的——每行一次ChartView
——对我来说没有用。
legend - 如何在androidplot中动态添加/删除线系列?
我正在使用androidplot
for 图表。我想动态显示/隐藏线条系列Scichart
,就像用户可以检查或取消选中图例一样,相应的可渲染线条系列将在图形上显示或隐藏。
wpf - WPF 工具包图表:自定义数据点工具提示
我想在显示 X 和 Y 值(独立和依赖值)的线序列的数据点上添加一个工具提示,而不仅仅是默认显示的依赖值。我知道这与这张票中写的问题相同 - WPF 工具包图表:自定义数据点标签
但是,我无法得到工作的答案。有一个链接指向似乎已过时的更多详细信息。
我的系列:
我的数据点在此处设置样式,但添加带有任何工具提示的 setter 属性并没有什么不同:
我已经尝试以各种方式在几个地方从上面链接的票证中添加这行代码,并且我已经尝试以各种方式使用 Binding,但没有任何效果。
这是许多没有取得进展的试验和错误。
wpf - 如何使用动态创建的图表和动态复选框隐藏和显示 LiveCharts 系列?
在 LiveCharts 中,我正在创建一堆带有 foreach 循环的 LineSeries。如何访问此列表中的特定系列?我想使用 WPF 中的复选框显示和隐藏它们。
我希望能够单击一个复选框并在图表中显示/隐藏特定系列。
javascript - 在 react-vis 中将多种颜色设置为单行 lineMarkSeries Graph
对于我的反应应用程序,我需要创建一个线系列图,每个点都有一个标记,当 x,y 值进行时,线的颜色应该改变。
我为此使用react-vis
了插件,它将显示带有漂亮曲线和标记的图形。但我面临的问题是无法随着价值的进展而改变线条的颜色。以下是目前的输出,
有人,请告诉我们如何使用 react-vis 来实现这一点。我已在此处附上沙盒链接以供参考。 链接:
javascript - How do i modify LightningChart JS point line series to achieve mentioned functionalities?
I wanted to create an XY chart with a simple point line series. For this I started trying out LightningChart JS software from Arction. Few of the questions that I would like to be answered, after creating a point line series with default properties are:
How to hide the information box that’s displayed on either of the axes along the cursor lines? We do not want them as we can see the x y information already on cursor box.
How to change the color of the content of cursor box?
How to change the title of the content of cursor box?
javascript - 如何将光标移动到图表上的任何位置,而不仅仅是系列数据点?
我有 2 个点线系列,每个点线系列上都有默认光标。默认光标沿着系列数据(点)运行。我想要的是一个光标,我可以在图表中的任何位置移动,而不仅仅是在系列数据上。
javascript - 在共享轴图中是否可以将轴与系列一起隐藏?
我正在使用 LightningChartJS 创建图表。单击图例框中的系列描述时,系列消失但轴保持不变。是否可以将轴与系列一起隐藏?
我的轴和系列如下:-