You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if name == 'main':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())
The text was updated successfully, but these errors were encountered:
yumianhuli1
changed the title
Volume subchart have its own Y-axis
Volume subchart have its own Y-axis by PySide6
Feb 28, 2025
yumianhuli1
changed the title
Volume subchart have its own Y-axis by PySide6
Subchart functionality cannot be implemented in pyside6
Feb 28, 2025
yumianhuli1
changed the title
Subchart functionality cannot be implemented in pyside6
Subchart functionality cannot be implemented in pyQT
Feb 28, 2025
yumianhuli1
changed the title
Subchart functionality cannot be implemented in pyQT
Subchart functionality cannot be implemented in pyqt5
Feb 28, 2025
yumianhuli1
changed the title
Subchart functionality cannot be implemented in pyqt5
Subchart functionality cannot be implemented in pyside6
Feb 28, 2025
import sys
import pandas as pd
import pandas_ta
from PySide6.QtWidgets import QApplication, QMainWindow, QVBoxLayout, QWidget
from lightweight_charts.widgets import QtChart
import importlib.metadata
class MainWindow(QWidget):
def init(self):
super().init()
self.setWindowTitle('Lightweight Charts Example')
self.resize(800, 600)
if name == 'main':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())
The text was updated successfully, but these errors were encountered: