- Use '/' key to quickly access this field.
- Enter a name of repository, or repository group for quick search.
- Prefix query to allow special search:
user:admin, to search for usernames, always global
user_group:devops, to search for user groups, always global
pr:303, to search for pull request number, title, or description, always global
commit:efced4, to search for commits, scoped to repositories or groups
file:models.py, to search for file paths, scoped to repositories or groups
For advanced full text search visit: repository search
The example shows how to create simple line chart.
\image examples_linechart.png
To create line chart, QLineSeries instance is needed. Let's create one.
\snippet ../examples/linechart/main.cpp 1
Then we add data to series. We can use append() member function or use stream operator.
\snippet ../examples/linechart/main.cpp 2
To present the data on the char we need QChart instance. We add the series to it, create the default axes and set the title of the chart.
\snippet ../examples/linechart/main.cpp 3
Then we create a QChartView object with QChart as a parameter. This way we don't need to create QGraphicsView scene ourselves. We also set the Antialiasing on to have the rendered lines look nicer.