The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredAsk the Fabric Databases & App Development teams anything! Live on Reddit on August 26th. Learn more.
I need to show the plots of all data, however, it was limited to 1000 rows. How do I overcome this? thanks
Hi tan_thiamhuat,
We are following up to inquire whether you have raised the support ticket. If you have already done so, we kindly request you to share your feedback regarding the issue raised.In case a solution has been provided, we would be grateful if you could share it with the community. This will assist others facing similar challenges and benefit the wider community.
If you need any more assistance, please feel free to connect with the Microsoft Fabric community.
Thank you.
Hi tan_thiamhuat,
We wish to follow up and inquire whether the workaround details we provided have resolved your issue.
If the proposed solution has not addressed the problem and continues to affect your workflow despite the workaround, we kindly request you to raise a support ticket with Microsoft using the following link:
Microsoft Fabric Support and Status | Microsoft Fabric.
Should you require any further assistance, please feel free to connect with the Microsoft Fabric community.
Thank you
For that, You should use Power BI Service rather than using Spark SQL in Delta Lake. Power BI Service has great interface of data visualizations and interactivity as well. For example you can create great visualizations using line chart or bar chart etc etc. Data is a limited in online public cloud account. ( ~ 10,000 rows in Delta Lake and 1000000 in Power BI Service)
Hi tan_thiamhuat,
Thank you for your update and for sharing the details of the error encountered.
Based on my understanding, the error message "WebGLRenderingContext: parameter 1 is not of type 'WebGLProgram'" is related to a WebGL rendering issue within the browser while interacting with the chart. This issue typically arises due to graphics driver limitations, disabled GPU acceleration, or a failure of the WebGL context in the browser, and is not related to SQL logic or Microsoft Fabric itself.
Kindly follow the steps below, which may help to resolve the issue:
df = spark.sql("SELECT Date, ROUND(SUM(rainfall),1) AS daily FROM FabricRainFloat WHERE location = 'Clements Road' GROUP BY Date ORDER BY Date").toPandas()
import matplotlib.pyplot as plt
plt.plot(df['Date'], df['daily'])
plt.xlabel('Date')
plt.ylabel('Daily Rainfall')
plt.title('Rainfall Trend - Clements Road')
plt.show()
We hope that the above information will assist in resolving the issue. Should you have any further queries, please feel free to reach out to the Microsoft Fabric community.
Thank you.
can Microsoft fix this instead of relying on the matplotlib library? Databricks can do all the plotting seamlessly.
Hi tan_thiamhuat,
We would like to follow up and see whether the details we shared have resolved your problem.
If you need any more assistance, please feel free to connect with the Microsoft Fabric community.
Thank you.
Hi @TAN ,
@v-pnaroju-msft seems to have shared a valid and appropriate answer. Hope it solves your query as well.
Hi tan_thiamhuat,
We sincerely appreciate your inquiry submitted through the Microsoft Fabric Community Forum.
Based on my understanding, Fabric Notebooks apply a default visualization limit of 1,000 rows in the display() function or SQL-based chart output. This limit is designed to optimise performance and rendering within the user interface.
Please follow the steps outlined below, which may help in resolving the issue:
For your reference, please go through the following links:
Notebook visualization - Microsoft Fabric | Microsoft Learn
Fabric Notebook known limitation - Microsoft Fabric | Microsoft Learn
We hope that the information provided will assist in resolving the issue. Should you have any further queries, please do not hesitate to reach out to the Microsoft Fabric community.
Thank you.
when I click the chart, it says:
User | Count |
---|---|
4 | |
3 | |
2 | |
2 | |
2 |
User | Count |
---|---|
10 | |
8 | |
7 | |
6 | |
6 |