Hello @Ho Kin Haw,
welcome to this moderated Azure community forum.
I expect you created an Azure Digital Twins environment already and have a twin setup in the graph.
To manipulate the digital twin properties in the graph, you need to execute specific code in an Azure Function (that has enough rights to manipulate twins).
Take a look at this blog post with more details. Sample Azure Function code is available on GitHub.
So, the flow is:
device -> iothub -> Azure Function -> Azure Digital Twins environment
Notice you need to update the properties of the twin. Azure Digital Twins also offers ingesting telemetry but this is a pass-through solution, generating ADT events but not changing the properties.
Azure IoT Explorer is a tool to check for incoming messages on the IoT Hub and offers limited abilities to manipulate IoT Hub device registrations. This tool also has no role within the flow seen above.
Also, notice that Azure Data Explorer is not part of this flow.
Azure Data Explorer offers a historical view of ADT twin changes when connected as a database.
In that case, the flow is:
device -> iothub -> Azure Function -> Azure Digital Twins environment -> Azure Data Explorer table with historical events.
If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.